hey,
Here is some CSS that will allow you to set the width of your sidebar and main content:
@media (min-width: 992px) {
.main {
width: 50%;
}
.kad-sidebar {
width: 50%;
}
}
Just adjust the percentages to be whatever you need. Let me know if that works for you.
-Kevin
Hi Kevin
Where do I put this code?
lecapalmeira,
You can paste it into your custom css box in Appearance > Theme Options > Advanced Settings.
Hannah
I Hannah
It works, but I did not want it applied to the homepage. I do not have sidebar on homepage.
How can I exclude the homepage of this change?
Thanks
Try also adding this:
@media (min-width: 992px) {
.home .main {
width: 100% !important;
}
}
Hannah
From the screenshot, it looks like you’re using the sidebar on your blog. Try this CSS instead.
@media (min-width: 992px) {
.blog .main {
width: 50%;
}
.blog .kad-sidebar {
width: 50%;
}
}
-kevin
Done!!
Thanks Hannah and Kevin.