• HEllo!

    My url is https://www.eatfreeblog.com. If you look at my site, you’ll see that the “Shop” tab is very close to the top of the first widget on my sidebar. How can I move all the widgets on my sidebar down to create more space? Please let me know what I need to change in the CSS code including the exact line. thanks so much!

Viewing 1 replies (of 1 total)
  • You need to change the top margin in the following CSS declaration:

    #sidebar {
        float: right;
        margin: 0 20px 0 0;
        text-align: left;
        width: 200px;
    }

    Margins are coded: top right bottom left, change the first zero to whatever looks right to you.

    So if you used 20px for the top margin it would be:
    margin: 20px 20px 0 0;

    You need to use Firebug to figure out CSS modifications.

Viewing 1 replies (of 1 total)
  • The topic ‘Need to move sidebar down’ is closed to new replies.