Log in

View Full Version : Table borders (advanced)



SteeleR
01-07-2008, 12:07 PM
http://89.215.52.231/templates/34/front5.html

this is the table..
i need the second and third row to have top and bottom borders that are 2px, not 1 line now..

any idea how can be done this ?

meanwhile.. i need all other borders to be 1px.. including the top top and bottom of the table itself...

A800
01-08-2008, 02:27 PM
In your Stylesheet, add this:


.borders {border-top:2px solid #BBDF2A; border-bottom:2px solid #BBDF2A;
after that, on the 2nd and 3rd row TD tags, add this to them:


class="borders"


I hope this works.

boogyman
01-08-2008, 02:40 PM
.borders {border-top:2px solid #BBDF2A; border-bottom:2px solid #BBDF2A}


corrected the typo

A800
01-08-2008, 05:45 PM
Thanks boogyman.