Renew Stack Blog Layout

Hello Themeco. I am running a renew stack on my site (https://stokedmountain.com/guide/) and can’t figure out how to change the blog layout. I am hoping to do a few things:

  1. Shrink Thumbnail image
  2. Move Image to the left
  3. On the right of the image have a title and under the title, the excerpt.

Would this be possible? Thanks!

Hello Tommy,

Please try this code in X > Theme Options > CSS:

@media (min-width: 768px) {
    .blog .x-main article .entry-wrap .entry-header, .blog .x-main article .entry-wrap .excerpt {
        width: 65%;
        float: right;
    }

    .blog .x-main article .entry-wrap .entry-featured {
        width: 30%;
        float: left;
        margin-top: 0;
    }

}

Kindly note that since this is a custom code that changes the default behavior/display of the theme, you will be responsible to maintain or update the code in case you require further changes or if the code stops working in future updates. If you are uncertain how to proceed, it would be best to get in touch with a developer.

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.