How I can make my WordPress theme look more bit wider?

MartonB

Regular Member
Joined
Aug 20, 2019
Messages
285
Reaction score
70
Hello, i need some help here.
I want to make my WordPress template look better by making the end of the sides a bit wider
Example: http://prnt.sc/suo8uh
 
I don't know where the option is for that particular theme, but look for a setting to increase container size/width. Go to Customize in the admin bar, then maybe Layout or something like that.

You can also adjust margins for the body with custom CSS.
 
I don't know where the option is for that particular theme, but look for a setting to increase container size/width. Go to Customize in the admin bar, then maybe Layout or something like that.

You can also adjust margins for the body with custom CSS.

Yes it's Layout, but sorry I don't have the pro version of the theme so I can't find that option to modify sizes.

I don't know nothing about custom CSS ):
 
Go to WP-Admin > Appearance > Customize > Additional CSS and paste this CSS rule:

.mh-container, .mh-container-inner {
/* Change 1180 to any width you like, test and see which one is good for you */
max-width: 1180px;
}
 
Last edited:
Go to WP-Admin > Appearance > Customize > Additional CSS and paste this CSS rule:

.mh-container, .mh-container-inner {
/* Change 1180 to any width you like, test and see which one is good for you */
max-width: 1180px;
}

It worked, thank you very much
 
Go to WP-Admin > Appearance > Customize > Additional CSS and paste this CSS rule:

.mh-container, .mh-container-inner {
/* Change 1180 to any width you like, test and see which one is good for you */
max-width: 1180px;
}

nice share helpful and easy
 
Back
Top