Created
July 24, 2013 07:18
-
-
Save agusmu/6068620 to your computer and use it in GitHub Desktop.
PrimaShop - Customize Sidebar Text Color
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* sidebar text color */ | |
#sidebar { | |
color: blue; | |
} | |
/* sidebar link color */ | |
#sidebar a, #sidebar a:visited { | |
color: red; | |
} | |
/* sidebar hover link color */ | |
#sidebar a:hover { | |
color: yellow; | |
} | |
/* sidebar widget title color */ | |
#sidebar .widget h3.widget-title { | |
color: green; | |
border-color: green; | |
} | |
/* sidebarmini text color */ | |
#sidebarmini { | |
color: blue; | |
} | |
/* sidebarmini link color */ | |
#sidebarmini a, #sidebarmini a:visited { | |
color: red; | |
} | |
/* sidebarmini hover link color */ | |
#sidebarmini a:hover { | |
color: yellow; | |
} | |
/* sidebarmini widget title color */ | |
#sidebarmini .widget h3.widget-title { | |
color: green; | |
border-color: green; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Tutorial: http://www.primathemes.com/documentation/customize-sidebar-text-color/