OMG, Frustrated........ (Solved)

Jul 14, 2009 20:45

I have tried every code listed here to remove the white border around my page and NOTHING works.  I must be doing something wrong or they changed something.  I don't know.  I have a Plus account and am using the Bookworm Mixit layout.  I've removed the code from my custom css since it hasn't worked, but any enlightment anyone can give is hugely ( Read more... )

page:borders

Leave a comment

Comments 5

nomoreprinces July 15 2009, 01:32:00 UTC
I hope I'm fixing the border you're talking about.

Find this:

#container-inner {
border-left: 1px solid #fff;
border-right: 1px solid #fff;
}

Change it to:

#container-inner {
border: 0;
}

Find this:
#header {
background: #url(header.png) no-repeat bottom left ;
padding: 0;
border: 1px solid #000;

border-top: 1px solid #000;
}

Change it to:

#header {
background: #url(header.png) no-repeat bottom left ;
padding: 0;
border: 0;
}

Reply

mannion July 15 2009, 01:50:30 UTC
Wow, thanks! You rock big time!!! It took all the white borders away except the one at the very top of the header. Is there code for that?

Reply

nomoreprinces July 15 2009, 02:17:35 UTC
It should have gotten the one at the top... at least it did when I was poking at it... I'll give it another poke later if someone doesn't beat me to it.

Reply

mannion July 15 2009, 02:36:46 UTC
Oooooh! Don't know exactly what I did, but it is fixed now!! You Genius, you! LOL!

Reply


Leave a comment

Up