Skinning and designing Serendipity (CSS, HTML, Smarty)
Eni
Regular
Posts: 62 Joined: Thu Jan 27, 2005 10:47 pm
Location: Münster, Germany
Post
by Eni » Fri Jan 28, 2005 1:42 pm
Hei,
my english is veeeery miserably, please excuse
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
Sorry, I'm Late. But I Got Lost On The Road Of Life.
garvinhicking
Core Developer
Posts: 30022 Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:
Post
by garvinhicking » Fri Jan 28, 2005 1:49 pm
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:
Regards,
Garvin