Changing Archives Page Layout

Home Forums Gillion Theme Changing Archives Page Layout

Home Forums Gillion Theme Changing Archives Page Layout

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • test2
    Participant

    Hi, is there a way to change all my Archived post (in Archive page) layout to a Left (Large) option? See screenshot of how I want the layout to look like, instead of the default grid layout. Thanks!

    Attachments:
    You must be logged in to view attached files.

    Hi @test2,

     

    Thank you for your question.

     

    You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    body.archive #content article {
        position: static !important;
        width: 100%;
    }
    
    body.archive #content article .post-thumbnail {
        width: 48%;
        float: left;
        clear: both;
    }
    
    body.archive #content article .post-content-container {
        width: 48%;
        float: right;
    }
    
    body.archive #content article .post-container:after {
         content: "."; 
       visibility: hidden; 
       display: block; 
       height: 0; 
       clear: both;
    }

     

    Best regards,
    Shufflehound team

Viewing 2 posts - 1 through 2 (of 2 total)