Jump to content

Font colour


cliff e

Recommended Posts

Hi All

Help needed driving myself nuts

Trying to change the font colour on the left side on main page tried the following places

public_html/skins/Spacecraft_Legend/styleTemplates/global/index.tpl

Cant seem to get it to change

My link

Would love some guidance here it will save my mind !

cheers

V 3.0.17

Link to comment
Share on other sites

Please look at styleSheets/style.css, line 167:

.txtDefault { color: #FFFFFF; }

Unfortunately, this is the default text and there are other locations that will also change color. If you want to change just the contents of that area (called a "box"), then we need to add a styling specific to that <div> in the box's template.

But, since this is a custom skin, folks over at cubecartforums.org will be able to help you figure out what you need to change.

Link to comment
Share on other sites

Open up styles.css and find this block of code:

li.piccywcd {

list-style-type:none;

background-image:url(../styleImages/buttons/nav_button_bg.jpg);

background-repeat: no-repeat;

background-position: 0 .4em;

width:155px;

height:28px;

padding: 0px 0px 0px 10px;

margin: 0px;

font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;

color:#fff;

font-size:12px;

line-height:35px;

text-transform:capitalize;

}




Then add this just beneath the closing bracket }:



li.piccywcd a {color:#000000;}

li.piccywcd a:hover {color:#666666;}

Let me know if that works.

Also, if you use the Firefox web browser, there is an addon/extension for it called Firebug. This extension lets you examine the html code and the CSS attached to it in a panel at the bottom of the screen - it will tell you what the CSS is doing. You can download both Firefox and Firebug for free, and both are invaluable in web development.

Hope that helps.

Dan

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...