New Topic

Need to extend margins on article page

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.

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #744

    zuku
    Participant

    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?
    http://img254.imageshack.us/img254/8781/schowek01xi.jpg

    #746

    StartupWP
    Keymaster

    Use:

    #sidebar {
    display: none;
    }
    #content {
    width: 96%;
    }

    https://startupwp.com/topic/customizing-your-theme/

    #748

    zuku
    Participant

    wow! works great ;)
    have one more question when I create unsorted list in editor page I can choose dots as show on picture:
    http://img62.imageshack.us/img62/6158/schowek01ki.jpg
    but finally on my page it’s look like:

    where can I fix it?

    #750

    StartupWP
    Keymaster

    .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;
    }

    #756

    zuku
    Participant

    thanks, but after that these “dots” are on left side even if I center them, why?
    http://img153.imageshack.us/img153/8821/schowek01ti.jpg

    #757

    StartupWP
    Keymaster

    Can we get the live link to your website?

    #759

    StartupWP
    Keymaster

    Also, 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;
    }
Viewing 7 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic.