New Topic

Need to extend margins on article page

Home › Forum › Customization › Need to extend margins on article page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #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 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.