• Hello –

    I’d like to move text in my blog posts to the right, it is too far on the left.

    Also, text in my side bar goes outside of the page.

    How do I change it?

    Thank you,
    Marianna

Viewing 9 replies - 1 through 9 (of 9 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Can you show us a page with the problem?

    Thread Starter MariannaJG

    (@mariannajg)

    Thank you for response… yes, if you go to
    http://athletezy.com/blog/

    you can see that everything is at very edge on the left literally touching the border. And when you scroll down and look at Recent Post area in the right sidebar, you can see that text is outside the column/ outside the white area.

    Thank you so much!

    Hope this helps you in the right direction.

    #secondary.secondary-right {
        float: right;
        padding: 15px;
    }
    
    #primary {
        float: left;
        padding: 15px;
        width: 66.66%;
    }
    
    .widget_archive ul, .widget_categories ul, .widget_recent_entries ul, .widget_meta ul, .widget_recent_comments ul {
        padding-left: 25px;
        list-style: none;
        margin: 0;
        width: 90%;
    }
    Thread Starter MariannaJG

    (@mariannajg)

    Thank you cccamuseme. I just did the changes you suggested but it seams nothing changed… 🙁

    Clear your browser cache or server cache. These changes worked for me in the inspector.

    Thread Starter MariannaJG

    (@mariannajg)

    Oh I see it… now though…my sidebar is below the main blog content and not next to it.
    Also, the text is still super close to the left edge.

    You messed up on the code.

    #primary {
        float: left;
        padding: 15px
     width: 66.66%;
    }

    You missed the end bracket after 15px, use this.

    #primary {
      float: left;
      padding: 15px;
      width: 66.66%;
    }
    Thread Starter MariannaJG

    (@mariannajg)

    Yeap… it just tell you I have no clue what I am doing… Looks awesome now! Thank you so much for your help cccamuseme.

    No problem. Looks like most of your issues are padding and margin styling tweaks.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Text is too far to the left…’ is closed to new replies.