Re: Search box won't work if floated 'right'
I thought I'd post this comment here, as it doesn't warrant a new thread; I've just found another mistake in the CSS, line 647 in altskin.css:
.products .descr,
.product-details .details .descr
{
font-size: 13px;
font-weight: bold;
}
I edited the font size to make the product description larger, but it didn't work - then I looked in Firebug and saw that there was a style in main.css that was more specific, which is line 19:
div,th,td,p,input,select,textarea,tt,button {
font-family: verdana, arial, helvetica, sans-serif;
color: #2c3e49;
font-size: 11px;
}
so I had to add a 'p' descendant tag to the altskin.css, like this:
.products .descr p,
.product-details .details .descr p
{
font-size: 13px;
font-weight: bold;
}
I would have thought just about everybody who edited their installation would want to change the appearance of the product description text, but the way it's been set up, newbies would have a hard time working out what's going on.
Anyway, I have learnt loads today with Firebug, it's a truly awesome add on for Firefox, and I think it will save me a good third of my time when designing websites.
__________________
X-Cart Gold Version 4.3.2
|