Big Bear wrote:
Hi,
Nice cars...
Try adding:
.banneritem img a {
border:0px;
}
You could also try that as one of the below but the above code is probably best:
.banneritem {
border:0px;
}
or,
img {
border:0px;
}
may also work as well.
TIP!!!
Grab the Firefox web developers toolbar - once installed you can hit CTRL-SHIFT-Y (together) and when you mouse over any element on the page it will tell you what css is influencing it.
Thanks BB! Yeah we have some nice cars around... my main business is in motorsport as a driver and instructor. Andy Baynham is a freelance engineer and a friend who I've delt with for years and currently looks after the GT Porsche that my business partner owns (in the gallery on that site). We recently aquired it to use on track days - bought it off another friend of mine for £65,000 (app. $130,000), it's a genuine ex-factory Porsche GT3RS racing car that was £180,000 (app. $360,000) new in 2002.
Anyway, back to the point in question: where in the css am I adding this, anywhere, or in a specific module tag like in #left?
Big Bear wrote:
To center we want to target the div that surrounds the banner item and give it an align:center; or text-align:center;
Try:
div .banneritem {
text-align:center;
}
Will try both of these and see what happens! Cheers!
Tim