Hi! I need to resize the width of the mainpage. I would like 50% to article content and 25% of each sidebar. Could you help me?
Regards!
Hi! I need to resize the width of the mainpage. I would like 50% to article content and 25% of each sidebar. Could you help me?
Regards!
Hi,
You need to find this elements on the current styleheet you are using located in the css folder then change the width.
#content, .entry-no-pic .entry-content {
width: 50%;
}
.sidebar {
width: 190px;
}
Regards,
Ismael
Hi Ismael,
Thanks for your help but now I got a new problem to solve. When I click on the article to read it, it size it's reduced too because that style rule affects the entry. How can I solve this? Thanks!
Hi,
Try this instead. Put this at the very bottom of the stylesheet.
.blog #content, .entry-no-pic .entry-content {
width: 50%;
}
.blog .sidebar {
width: 190px;
}
This will only affect the blog page. If you want to work on the homepage put .home instead of .blog.
Regards,
Ismael
It worked!
Thanks a lot man :D
Hi jonafib,
Glad that I could help. :)
Cheers,
Ismael
This topic has been closed to new replies.