• Hi,

    I need to edit my “About” page and expand the margings so the facts are only one line instead of two. I know where to do it (Pages/Edit/HTML) but I need the code for it. I tried this at the very beginning of the page but it did not work.

    #content {
    margin: 0 0% 0 3%;
    width: 65%;
    }

    https://www.priscillapwood.com

    Thanks,

    Priscilla

Viewing 4 replies - 1 through 4 (of 4 total)
  • You need to change the margins in the style.css file in this part (line 103)

    .singular #content, .left-sidebar.singular #content {
        margin: 0 7.6%;
        position: relative;
        width: auto;
    }

    It may, however, change the margins on other pages that use those classes or IDs.

    If you don’t want margins of other pages to change then you could try this code on your about page:

    <div id="myabout" style="margin-left: 20px; margin-right: 20px;">
    
    <------- Put or copy/paste your other code here ------->
    
    </div>

    The first line is self explanatory so you need to change the first line margin of 20px to whatever you want.

    Good luck.

    Thread Starter priscilla136

    (@priscilla136)

    @mytaxsite: This worked perfectly, thank you so much!!

    I am glad it worked. Another way is to change the font size but let us do this next time.

    Thanks for the feedback.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change or edit the margins in the "ABOUT" page TWENTY ELEVEN’ is closed to new replies.