Hello Caroline,
does your theme have two side bars?
What theme are using?
Hello Dyrer,
Thank’s for you answer,
I have just one side bar on the right and the theme used is Sela.
This theme support only one right sidebar, if you want with two side bars you have to choose a different theme
Caroline – Sela is designed with a maximum width of 1180px, so if you’re on a screen wider than that, you’ll see some empty space to either side.
That comes from this CSS:
.site {
margin: 0 auto;
max-width: 1180px;
padding: 0;
}
You can override this in your child theme, but keep in mind that the whole theme was designed with this maximum with in mind, and if you alter it, many elements won’t look right and will also need to be adjusted.
For example, you could add this to your child theme to make the maximum width 1500px:
.site {
max-width: 1500px;
}
Je parle aussi français, donc si vous avez de la difficulté à vous exprimer, vous pouvez le faire en français et je vais comprendre.
dyrer – this person posted in the Sela theme forum, which you can see at the top right where it says “About this Theme Sela” so that’s how you can tell what theme they’re using. You can also tell which theme a site is running by viewing the browser source, and looking for the path with wp-content/themes/themename:
http://www.carolinesmeers.com/wp-content/themes/sela/style.css?ver=4.4.1
Hello,
Thank you very much for your quick reply.
I think that I won’t edit the max-width in the CSS, it’s safer. And thank you for your understanding about french.
Caroline