Thank you very much for this amazing theme!
My website is almost done, but I need your help to get it right.
I have chosen the three columns layout on the “Theme Options” (the one with the sidebar on the left side).
Here is my question:
What css code do I need to establish that, in this three columns layout, I want the following dimensions:
column 1: 25%
column 2: 25%
column 3: 50%
I will really appreciate your help!
Try this:
#content{
width: 75%;
}
.entries .twocol:nth-child(odd) {
width: 33.3%;
}
.entries .twocol:nth-child(even) {
width: 66.7%;
}
#sidebar {
width: 25%;
}