Customizing the "Aside" Post Style in Hemingway Rewritten

  • Unknown's avatar

    Hi! I’m new to the forum, and new to WordPress.

    I’m really enjoying the Hemingway Rewritten theme, except for the “Aside” post type layout.

    Is there a way that I can alter the “Aside” layout using the Custom CSS box within Appearance>Customize section?

    The “Aside” post type in Hemingway Rewritten places the entire post into a smaller content block, and I would like to remove that block from the “Aside” format. In other words, I’d like for the body of the “Aside” post to look just like a “Standard” post. The only thing I’d like to retain from the “Aside” layout is the smaller, centered post title.

    Thanks in advance to anyone who can offer some assistance!

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

  • Unknown's avatar

    Hi there, give the following CSS a try. Since you didn’t have an aside that I could find on your site, I worked off the demo site.

    Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.

    .format-aside .entry-content {
        background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
        margin: 0;
        padding: 0;
    }
    .format-aside .entry-title {
        text-align: left;
        font-size: 4.5rem;
        text-transform: none;
    }
    .format-aside div.entry-meta {
        text-align: left;
    }
  • Unknown's avatar

    thesacredpath,

    Thank you SO much!

    I did have to alter the code to “text-align: center” to get the look I was going for, but now it’s perfect!

    You are definitely a happiness engineer. :D

  • Unknown's avatar

    Well, thank you, and you are welcome. Let us know if you have any additional questions. :)

  • Unknown's avatar

    HI,

    CAN SOMEONE PLEASE HELP ME TO ADD THE FOLLOWING COPYRIGHT LINE IN THE FOOTER. MY THEME IS HEMINGWAY REWRITTEN

    © SCARLET BLUSH BLOG | BEAUTIFUL YOU! ALL RIGHTS RESERVED

    THANKS IN ADVANCE :)

    The blog I need help with is scarletblushblog.com.

  • Unknown's avatar

    @riarajendran, in the future, if you don’t find a thread on your question and theme, feel free to start a new thread. It helps to avoid confusion if we don’t discuss different issues in a single thread. Thanks in advance.

    Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS to add your copyright above the existing footer credits. I restyled the existing credits slightly so that your copyright stands out more.

    .site-footer .site-info, .site-footer .site-info a {
        color: #777;
        font-size: 1.2rem;
    }
    .site-info:before {
        content: "© SCARLET BLUSH BLOG | BEAUTIFUL YOU! ALL RIGHTS RESERVED";
        display: block;
        color: #f76d6d;
        font-size: 1.4rem;
    }

    On the existing footer credits, they have to remain on the site and readable, but we can restyle them so they better fit with your design and such.

    See what you think and met me know.

  • Unknown's avatar

    @thesacred path :) Thank you so much for your help.. it looks awesome! The restyling has made my copyright actually looks more prominent.
    And yes i shall post my query in a new post :)

  • Unknown's avatar

    That is great, and you are welcome.

  • The topic ‘Customizing the "Aside" Post Style in Hemingway Rewritten’ is closed to new replies.