Border around

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
Eni
Regular
Posts: 62
Joined: Thu Jan 27, 2005 10:47 pm
Location: Münster, Germany

Border around

Post 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
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:

Re: Border around

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply