Remove border on right side of my website
-
For some reason I have this strip of white on the right side of my site. Any advice on how to remove it?
I’d also like to remove the padding around my content if at all possible :)
Thanks!
The blog I need help with is: (visible only to logged in users)
-
The white stripe is just an area without content caused by the maximum width of the page (or #page). To expand the width to 100% you can use this:
div#page { width: 100%!important; }Some things will need to be adjusted to your new page width.
To center your menu, use this:
.menu-primary { display: table!important; width: auto!important; }To center your content, use this:
#content { width: 100%; }I hope this helps!
Regards,
Michael
-
- The topic ‘Remove border on right side of my website’ is closed to new replies.