Home › Forum › Customization › Need to extend margins on article page
This topic contains 6 replies, has 2 voices, and was last updated by StartupWP 5 years, 10 months ago.
- AuthorPosts
- May 6, 2013 at 12:13 PM #744
Hello,
could anyone help me with style.css. I don’t use any right sidebar and my article page is limited by thah sidebar space. Is any way to edit css to fully extend margins on article page, as show on attached picture?
May 6, 2013 at 12:25 PM #746Use:
#sidebar {
display: none;
}
#content {
width: 96%;
}May 6, 2013 at 1:30 PM #748wow! works great ;)
have one more question when I create unsorted list in editor page I can choose dots as show on picture:
but finally on my page it’s look like:
where can I fix it?
May 6, 2013 at 2:46 PM #750.entry-content li:before, .comment-content li:before, #hsidebar .children li:before, #fsidebar .children li:before {
content: "";
}
#content ul, .widget-container ul {
list-style: disc outside none;
}May 12, 2013 at 9:45 AM #756thanks, but after that these “dots” are on left side even if I center them, why?
May 12, 2013 at 3:13 PM #757Can we get the live link to your website?
May 12, 2013 at 4:09 PM #759Also, it might be as simple as updating:
#content ul, .widget-container ul { list-style: disc outside none; }
to:
#content ul, .widget-container ul { list-style: disc inside none; }
- AuthorPosts
You must be logged in to reply to this topic.