Skip to content

Instantly share code, notes, and snippets.

@agusmu
Created July 24, 2013 07:18
Show Gist options
  • Save agusmu/6068620 to your computer and use it in GitHub Desktop.
Save agusmu/6068620 to your computer and use it in GitHub Desktop.
PrimaShop - Customize Sidebar Text Color
/* 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;
}
@agusmu
Copy link
Author

agusmu commented Sep 28, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment