• gothicvegan

    (@gothicvegan)


    I thought I successfully moved the sidebar from the left to the right, but when I looked at all my other pages, the sidebar stayed on the right! I changed the

    .narrowcolumn .postmetadata {
    text-align: right;
    }

    to left and

    .sidebar { float:left; width:236px;}

    to right but I can’t figure out why it’s only showing up on the homepage. Here’s the site I’m working on (the sidebar is on the left at the moment)

    https://www.ventureperu.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • knoppys

    (@knoppys)

    First create a child theme, do not edit the main theme.

    Then change your css as follows: (hope you dont mind but i added a few things on the end of it too).

    On line 686
    .sidebar {
    float: right;
    width: 236px;
    }

    On line 696

    #right_cont {
    float: left;
    width: 685px;
    }

    You nearly had it……
    Just some thoughts.

    Try adding this to tidy things up
    .sidebar_text > p {
    padding: 8px;
    }

    Try this for your sidebar video:
    #placeyoutubevideowidget-2 h2 {
    display: none;
    }

    Try this on line 743:

    #placeyoutubevideowidget-2 .sidebar_text {
    background: url(“images/video_bg1.png”) no-repeat scroll left top rgba(0, 0, 0, 0);
    float: right;
    height: 172px;
    margin: 0 -4px 10px;
    padding: 7px;
    width: 97%;
    }

    Thread Starter gothicvegan

    (@gothicvegan)

    Thank you so much knoppys, that did it! I really appreciate it!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sidebar moves on home page but not on other pages’ is closed to new replies.