Customizing themes

  • Unknown's avatar

    I would like to remove the left column currently showing meta information like tags and categories from the post view of the site https://empireofk.com/portfolio/glitterbox/

    I would like to widen the photo gallery column to take up that space instead.

    The blog I need help with is: (visible only to logged in users)

  • Hi.

    It looks like you’ve been able to remove the tags and categories from the link you provided. If you have any other questions, please let us know.

  • Unknown's avatar

    Actually no. I want to be able to widen the photos so there isn’t that big white gap to the left side. There used to be a comments column there and I don’t want that white space. I want to widen my photos so any information you can give me would be great on how to do so.

  • Hi

    If you want to create these edits for the Glitterbox post only, add the following code to your Custom CSS Editor:

    #post-517 .entry-meta-wrap {
        float: none;
        margin-right: 0%;
        width: 0%;
        display: none;
    }
    
    #post-517 .entry-header {
        float: none;
        margin-left: 0;
        width: 100%;
    }
    
    #post-517 .entry-content-wrap {
        float: none;
        overflow: hidden;
        width: 100%;
    }

    OR

    If you want to remove the sidebar/center content for ALL posts, add this code to your CSS editor.

    .single .entry-meta-wrap {
        float: none;
        margin-right: 0%;
        width: 0%;
        display: none;
    }
    
    .single .entry-header {
        float: none;
        margin-left: 0;
        width: 100%;
    }
    
    .single .entry-content-wrap {
        float: none;
        overflow: hidden;
        width: 100%;
    }

    Hope this helps!

  • The topic ‘Customizing themes’ is closed to new replies.