Log in

View Full Version : CSS? Background image? Etc?


EvilKitty
08-01-2007, 04:53 PM
Okay, here's my dilemma..

As you can see by the mockup i've created - the body background requires a dashed border several pixels 'inside' the body. Now getting the dashed border was easy as pie, but how would i go about pushing it 'in' on the forum body.

I initally thought of doing it as a background image, but found that near impossible, so...

Any help with the CSS?

Heres where i stand now.

vertical align img 1 top
vertical align img 2 repeat y
vertical align img 3 bottom

Is this type of setup even possible?

Opserty
08-01-2007, 06:14 PM
Wouldn't it be easier to use the CSS border property?

Rough outline:

<body>
<div style="border:1px dashed #000000;">
<!-- YOUR STUFF FORUM HERE -->
</div>
</body>


You can then use the padding property to add space between the forums and the border (I think).

RedTyger
08-01-2007, 06:22 PM
That's right. :) Padding is inside, Margin is outside.