PDA

View Full Version : Adding a border...not HTML style...


idwf
08-08-2003, 06:56 PM
Hey all :)

I was wondering what the code was to give my tabe a forum style black line border. I tried the html version (border="1") but that gave it a huge nasty line.

I just want to give my table with my buttons in a black line border like the rest of the page. http://www.indeathwefall.co.uk/forums

any ideas? Thakns :)

Tony G
08-08-2003, 10:49 PM
Erm, do you mean a forum border?

If so, there is a mod for it.
http://www.vbulletintemplates.com/mods/showthread.php?t=3885&highlight=Forum

idwf
08-08-2003, 10:51 PM
no. thanks anyway.

what im looking to do is, if you click http://www.indeathwefall.co.uk/forums you'll see that my forums have a black border around the table that has my buttons in it..thats more than 1pxl. How can i make this 1 pxl thick? Same for the banner image.

SaintDog
08-08-2003, 11:30 PM
If you are looking to do it with CSS, you can add a border to a table using the following in the <table> tag:

style="border: 1px solid #000000;"

Just change the color code to that of what you are looking to use. What you see in the picture is an HTML border and it looks to be about 2px-3px think, not 1px. Default table borders (using the border="1" attribute) are usually thicker than CSS borders.

idwf
08-08-2003, 11:33 PM
thanks I'll give that a try :)

SaintDog
08-08-2003, 11:50 PM
No problem :)