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!
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.
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!