How to rentabilise the space ?

  • Unknown's avatar

    Hi everyone !

    I would like to use the whole screen to show my pictures.
    For example, in a page with a mosaic gallery, I need to have the images occupying the whole page, not only centered with two blanks sides.
    I use the Coherent theme.

    I also would like to make the comments section disapear on the whole website, and delete the mention : powered by WordPress / Theme coherent.

    Could you help me ? I am very new to CSS…

    Thank you in advance !
    Dorian

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

  • Unknown's avatar

    I notice you’ve set your Media Width in the CSS section of the Customizer at 1800px. The following will modify the CSS of the theme so that images and other content will be at 1800px maximum width.

    .entry-wrapper {
        width: 100%;
    }
    .entry-content {
        max-width: 1800px;
    }

    With the above change, you will likely have to save and publish the CSS and then visit your site to see the change.

  • Unknown's avatar

    And actually, let’s change that to the below to widen everything else.

    .site-footer, .header-inner, .site-main.nav-previous, .site-main.nav-next, .comments-area, .entry-wrapper, .nav-links, .page-content, .page-header {
        width: 100%;
    }
    .entry-content {
        max-width: 1800px;
    }
  • Unknown's avatar

    Oh ! Thank you very much. It worked perfectly !!!

  • Unknown's avatar
  • Unknown's avatar

    This worked for my site as well. You’re a Godsend! THANK YOU!

  • Unknown's avatar
  • The topic ‘How to rentabilise the space ?’ is closed to new replies.