• Resolved alfredchan

    (@alfredchan)


    On my home page I can see an image sidebar and to the right of that I can see my normal sidebar. But when I go into single posts, I can only see the image side bar. I would like my normal posts to show both the image sidebar and the normal sidebar.

    I am using the Ideation and Intent theme.

    In my index.php file, the code shows:

    <?php get_sidebar( ‘gallery’ ); ?>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    When I put that into my single.php code, it puts the sidebar underneath the image sidebar but I would like them to be next to each other.

    Is there anyway I can do this?

    My blog is: https://www.alfredchan.com.au

    Thanks ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • the width for the main column in single post (or page) is set in style.css:

    .page .site-content,
    .single-post .site-content {
    	width: 812px;
    }

    for single posts plus picture sidebar, try and add this line to the end of style.css (or better use a custom css plugin for the edits):

    .single-post .site-content
    {
      width: 528px;
    }

    weird, that the picture sidebar is now on the outside (?)

    Thread Starter alfredchan

    (@alfredchan)

    Thanks a lot alcymuth.

    I put that code in but I didn’t realise how much longer that made the pages and changed it back.

    Thanks for your help ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Missing side bar in posts’ is closed to new replies.