Jump to content

BLOCKCART TEXT COLOURS IN GLOBAL CSS


Recommended Posts

Hello everybody,


I'm building a theme but can't find in global css the colour codes for blockcart and specials block, which I need to change because i'm uploading a white background and the text is currently set at FFFFFF so has to be changed.

Any help would be much appreciated.

BR,

Guitarplayer.

Link to comment
Share on other sites

search for something like this:

/* Special style for block cart*/
#cart_block .block_content { padding: 0.6em; }
#cart_block h4 {     font-family: "Trebuchet MS", Sans-Serif;
   font-weight: bold;
   font-size: 1.1em;
   padding-left:0.5em;
   padding-top:7px;
   line-height:1.3em;
   color: #F0F0F0;
   height: 26px;
   background: transparent url('../img/block_header_cart.png') no-repeat top left;
   border-top: 1px solid white;
   border-left: 1px solid white;
   border-right: 1px solid white; }
#cart_block h4 span{
   text-transform:none;
   font-size:0.8em;
   cursor:pointer;
   background-repeat:no-repeat;
   background-position:left top;
   padding-left:10px;
}



i'm not sure it's this...

Link to comment
Share on other sites

  • 3 weeks later...

Firebug is another really cool add-on for web designers/developers

Firebug for Forefox add-on

One option in this add-on is "inspect element" so as you hover over your webpage, the dom tree will show you what elements apply and you can view css (telling you what file and line is being used to apply formatting)

You can then edit is real time within firebug to see a proposed css change on-the-fly before making the change in your actual CSS file

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...