• Resolved Harrij Mensinga

    (@harrij-mensinga)


    All posts on Blog are very small when set to theme post. The page width is fine, but posts are too small. Would like to add some CSS code to set a wider width for posts.

    check the size of my tech news posts

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi there,

    Your site is not accessible https://vertis.d.pr/i/3Sq4Ll. Please share some screenshots of what’s the issue and what you’d want to obtain.

    Thank you!

    Thread Starter Harrij Mensinga

    (@harrij-mensinga)

    website works fine for me on desktop and mobile https://macapps.cloud/. well apart for the post width on desktop

    checkout https://macapps.cloud/working-of-a-quantum-computer/ to see the width of posts.

    Thread Starter Harrij Mensinga

    (@harrij-mensinga)

    resolved by creating a child-theme and adding this css code:

    function single_post_full_width() { return ‘col-md-12 page-content-wrap ‘; } function single_page_full_wdith() { return ‘col-md-12 single-post-container’; } function index_page_full_width() { return ‘col-md-12 blog-posts-wrap’; } function make_pages_full_width() { /* Blog/Archive pages */ add_filter( ‘hestia_filter_index_search_content_classes’, ‘index_page_full_width’ ); /* Single page */ add_filter( ‘hestia_filter_page_content_classes’, ‘single_page_full_wdith’ ); /* Single post */ add_filter( ‘hestia_filter_single_post_content_classes’, ‘single_post_full_width’ ); } add_action( ‘after_setup_theme’, ‘make_pages_full_width’ );

    Ok, thank you for the update!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Post width on Hestia’ is closed to new replies.