Looks like there’s a fixed pixel width set. Not sure if this is coming from the plugin or the copy of the css in your templates folder (if you’re using custom templates) or somewhere else in your theme css. But it needs to change to a flexible % like this:
.kbe_content_full {
width: 100% !important;
}
Thread Starter
krko
(@krko)
I don’t know where is it coming from as I haven’t changed anything. Anyway should I just add the above css to style.css?
Thread Starter
krko
(@krko)
Just checked in the plugin files…
It has:
.kbe_content_full{
width: 980px !important;
display: inline-block;
float: none;
}
.kbe_content_right{
width: 715px !important;
float: right;
}
.kbe_content_left{
width: 715px !important;
float: left;
}
You should change it so it’s responsive since it’s one of the key points you emphasise about your plugin.
krko
Thread Starter
krko
(@krko)
This is in vanilla plugin downloaded from wordpress.org.
Yep noted already. Like I said, on your site just change to:
.kbe_content_full {
width: 100% !important;
}
And we’ll check this for next release