PDA

View Full Version : Adding border


Gophers
08-26-2012, 05:15 PM
Ok how do i add a border around the white area of my site. Not the background, but the white around, which i believe is the body.

I have try everything and nothing seem to work.

peugeot405
08-26-2012, 05:52 PM
in addiotional css add:

.body_wrapper {
border: 2px solid #333333;
}

adjust 2px and #333333 according to your needs.

Gophers
08-26-2012, 06:01 PM
in addiotional css add:

.body_wrapper {
border: 2px solid #333333;
}

adjust 2px and #333333 according to your needs.

Thank. Another question. Is it possible to add it to the whole area including the header part and just not the body part.

peugeot405
08-26-2012, 06:05 PM
you can use this instead of previous:

body {
border: 2px solid #333333;
}

Gophers
08-26-2012, 06:22 PM
Thank. that did it. thank again. Now gonna play around with the footer and see if i can get my image to show up the way i need too. adding a image where the copyright stuffs is, going to play around and see if i can get it to work.

peugeot405
08-26-2012, 06:26 PM
glad to help.

here's something to get you started on the footer part:

.below_body {
}

Gophers
08-26-2012, 07:21 PM
Ok i got that part work. gonna play around some more.

Gophers
08-28-2012, 12:31 AM
Ok i working on my footer. But i running into a problem and can't seem to figure it out. How do i make the footer where the contact us link and top link is etc. How do i make that full width.

Gophers
08-29-2012, 09:47 PM
Hmm anyone know what i need to do. Still having problems.