Can't find the content section on style.css blask theme

  • Unknown's avatar

    I’m trying to modify the width of the content area of a page on blask theme to let it adhere after the delete of the sidebar, but i can’t find the right section in the style.css, how can i find it?

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

  • Unknown's avatar

    Hi, your website is showing Under Construction. Any chance to view the development version you’re working on.

    Good day!

  • Unknown's avatar

    Hi @elisanocentini. :)

    I recommend again editing your theme’s style.css file directly. Any changes you make there will be lost when it comes time to update.

    As you have Jetpack installed on elisanocentini.com then a straightforward way to add CSS is to enable its custom CSS module. (Alternatively you can set up a child theme or activate a standalone CSS plugin.)

    You could then use the following custom CSS to increase the width of your site’s content (if you don’t plan on adding a sidebar at all in the future):

    .hentry {
        max-width: 100%;
    }
    
    .comment-navigation, .posts-navigation, .post-navigation {
        max-width: 80%;
    }
    
    .entry-content, .entry-summary {
        width: 100%;
    }

    As an extra note: It seems like your site is hosted through a third-party company while we’re only able to provide full support for sites that are hosted here at WordPress.com.

    The fact that your site is running on the free software available over at WordPress.org may have led you here.

    The difference between the two types of WordPress (WordPress.com and WordPress.org) is a common and understandable point of confusion. If you’re unsure of the differences, then this guide gives a good overview:

    WordPress.com vs. WordPress.org

    As your site is hosted elsewhere, the theme’s dedicated support forum over on WordPress.org is the best place for you to go with any extra questions:

    https://wordpress.org/support/theme/blask

    Every thread on the above forum receives a reply and we’ll be happy to troubleshoot further or answer other questions for you there.

  • The topic ‘Can't find the content section on style.css blask theme’ is closed to new replies.