PDA

View Full Version : A easy question but i need help please :)


Mickel
07-02-2004, 05:51 PM
i know this is a stupid question but...
what or is there a html code for gettin there to be a border colour for layout cells in dreamweaver? :thumbsup:


Cheers

oracleguy
07-02-2004, 06:06 PM
Please read our posting guidelines (http://www.codingforums.com/postguide.htm) for when you name your threads in the future.

Your question isn't totally clear either, do you want to make the cells in a table have a border? If those then I'd probaly just do this:


<style type="text/css">
td {
border: 1px solid #000000;
}

</style>

Mickel
07-02-2004, 07:59 PM
ok ill reasd them sorry mod,

i mean when you go to do the layout boxes, on dreamweaver if you know what i meannot sure on how to explain... :confused:

Antoniohawk
07-02-2004, 10:51 PM
I'm not sure either, of what you're talking about. Could you try to explain some more, or even show us some screenshots of the problem? :)

bradyj
07-03-2004, 06:33 AM
Dreamweaver can do it two ways:
Just HTML? Click on the table cell in design view. At the inspector on the bottom of the screen (the long little window that has options for fonts and all that) there's an option for:
borders
border colors
cell spacing

That you can play with numbers and it will do the text automatically.

It would be best to do it with CSS for many reasons, but you should read up on your html as well to get to that level. If you choose to go the CSS route:
in your top menu, click window -- css, so the CSS tab comes up. When you see that little CSS window on the right, click the plus sign, when THAT new window pops up, select the arrows on the right and select the HTML code you want to apply the CSS to (table, td, tr, etc.) and then follow the steps.