• Resolved spai

    (@spai)


    Hello Array team,
    Thank you for writing the Editor theme. It is quite elegant and professional in appearance.

    I would like to change post pages so that the outer frame – the one with post category and the “edit” button – get relocated from the left to the bottom.
    I would like to expand the post content text area to be as wide as possible from left to right, so that the page is just sidebar + post content.

    Thanks,
    Shraddha

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author ArrayHQ

    (@okaythemes)

    Hi Shraddha,

    Glad you’re enjoying Editor! Your request will take a little work, but I’m happy to point you in the right direction.

    You’ll want to take a look at content.php and look for <?php get_template_part( 'content', 'meta' ); ?>. This is the template file that loads the category, tags and the edit button. You can move this below the .entry-content div in content.php.

    Then, you’ll have to apply some styling to make the meta area sit under the post area. You might try something like this: .entry-meta {width: 100%;}. That will give you a little room to make the content area larger: .entry-content {width: 100%;}

    These are just suggestions but should send you in the right direction to customizing Editor!

    Thread Starter spai

    (@spai)

    Hello team at ArrayHQ,

    Just got a chance to try out your suggestions and they worked right out of the box.
    I did as you suggested:
    1. Moved <?php get_template_part( ‘content’, ‘meta’ ); ?>. below .entry-content div.
    2. In stylesheet.css added “width: 100%” to the .entry-meta class
    3. Not really necessary but also added “width:100%” to the .entry-content class

    Thank you for your help,
    Shraddha

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Post page – moving outer frame’ is closed to new replies.