Page 1 of 1

Border around

Posted: Fri Jan 28, 2005 1:42 pm
by Eni
Hei,

my english is veeeery miserably, please excuse :oops:

I would like to have a border around the Blog ... in Sunlog, what I use before, it looks so in the css:
#container
{
background-color: #fff;
background: url(images/bg2.jpg);
width: 665px;
border: 2px solid #333;
text-align: left;
}

#container_shadow
{
border: 6px solid #C09E6B;
margin: auto;
width: 669px;
}
Container is the full Blog with sidebar, banner and and so on.
How can i do a border in Serendipity?
Tnx for help.

LG,
Eni

Re: Border around

Posted: Fri Jan 28, 2005 1:49 pm
by garvinhicking
In case you have not change the HTML layout of your Serendipity page, our main container is:

<table id="mainpane">

That means, you can style it via:

Code: Select all

#mainpane{
  border: 10px solid red;
}
If that's not exactly what you mean, try this:

Code: Select all

body {
  border: 10px solid red;
}
Regards,
Garvin