View Single Post
  #222  
Old 09-16-2007, 08:09 PM
 
MoonDog MoonDog is offline
 

Advanced Member
  
Join Date: Aug 2007
Posts: 93
 

Default Re: Mod for subcategories in columns with descriptions and icons

vahidnia,

Search for this code in the skin1/skin1.css file.
This is what your looking for to change the font styles of the subcategories.
Code:
/* Items style */ .ItemsList { COLOR: #003834; FONT-WEIGHT: bold; } .ItemsListDisabled { COLOR: #909090; } A.ItemsList:link { COLOR: #330000; TEXT-DECORATION: none; } A.ItemsList:visited { COLOR: #330000; TEXT-DECORATION: none; } A.ItemsList:hover { COLOR: #330000; TEXT-DECORATION: underline; } A.ItemsList:active { COLOR: #330000; TEXT-DECORATION: none; }
Since the font size is inherited, and you want a different size font. Then all you do is just insert the font size you want into the .ItemsList class.
Example: you want to change to font size to 16 px. All you do is insert this code:

Code:
FONT-SIZE: 16px;

into the .ItemsList class above. So that your code will now look like this:
Code:
.ItemsList { COLOR: #003834; FONT-SIZE: 16px; FONT-WEIGHT: bold; }

And that's it.

- MoonDog -
__________________
X-CART Gold v4.1.8
Reply With Quote