Forum Moderators: not2easy

Message Too Old, No Replies

Help with Syntax Please

         

peterinwa

7:49 pm on Mar 6, 2005 (gmt 0)

10+ Year Member



I have an img tag with:
width=268 heitht=60 border=1

And I wanted the border red so I added:

class="gifBorder"

And in my style sheet I have:

.gifBorder {
border-color: #ff0000}

I need to put everything in the style sheet because of some JavaScript problems and I was told to use this code:

style='width:461px;height:65px;border:1px solid'

Can you please show me how to incorporate the above into my gifBorder style above? I'm just not sure of the syntax.

Thanks!

theguX

8:26 pm on Mar 6, 2005 (gmt 0)

10+ Year Member



img.blah
{width:461px;height:65px;border:1px solid #ff0000}

peterinwa

3:18 am on Mar 7, 2005 (gmt 0)

10+ Year Member



Thanks, Peter