Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Where do I alter font & size in categories box?


purplemartinart

Recommended Posts

Posted

I have searched in this forum and can't seem to find it.

I am trying to make the text a little larger/bolder/more obvious in the categories box on my site.

I just want to make it more obvious that you click on those category names to see the items within the sections.

My site is really basic.

Any ideas without redoing the whole site?

Perhaps an add on that I am not aware of??

In case you want to see my humble site...www.purplemartins-r-us.com/catalog

 

thanks for your input!

Thanks,

Susan

 

 

Proudly uses Oscommerce!

Posted

The styles that control it are in the catalog/stylesheet.css. They are

 

.boxText{ This controls the text }

A{ This controls the link }

A:hover{ This controls the links hover }

 

You can set up a new A class like so. Add to catalog/stylesheet.css

A.category_links {
 color: #000000;
 font-size: 12px;
 text-decoration: none;
}

A.category_links:hover {
 color: #0000FF;
 font-size: 12ps;
 text-decoration: underline;
}

Then in catalog/includes/boxes/categories.php find

	$categories_string .= '<a href="';

Change to

	$categories_string .= '<a class="category_links" href="';

That will handle just the links for the categories box only.

 

This gives an explination of the stylesheet

 

Click Me

Posted

THANKS BKtrain!

That is just what I needed. I can't tell one item in the code from another, so knowing which one to change is a godsend. Thanks so much!

Thanks,

Susan

 

 

Proudly uses Oscommerce!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...