Jump to content

How do i change the font color of top header cart


Recommended Posts

Hello,

I am trying to change the color of the header cart where is says cart(empty) or cart 2 products ect,
Currently the fonts are in bold i also wanted to make them normal, how can I do that.

Anyone knows how to help me?

Thank you so much!

Link to comment
Share on other sites

I struggled with it for many hours!!!! but was able to change color for Welcome, Cart: (empty), Your Account by modifying the following:

global.css:

#header_user p { color: #c0c0c0 }

#header_user li {
color: #c0c0c0;

#header_user #shopping_cart a, #header_user #your_account a {
color: #c0c0c0;


I still haven't figured out how to change the "LOGIN" color...
I am not sure if what i did was correct, so mod it wisely...

Link to comment
Share on other sites

Try changing this line on global.css (themes/-theme-/css):

 #header_user span {
   font-weight: normal;
}


The easiest way to change colors/sizes (css) is by using Firebug (Firefox Extension). Just click install, click on his logo (bottom of the browser) and then click on the element you want to know his propierties. It will tell you even the line of the css. Try using Up-Down to navigate the propierties (maybe you don't know enough css and this will help).

Good luck :)

Link to comment
Share on other sites

  • 3 years later...

It's in themes/default-bootstrap/css/modules/blockcart/blockcart.css

 

.shopping_cart > a:first-child {
    color: #777777;
    font-weight: bold;
    text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

Change color to desired

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...