How can I control my home-page columns width? [Need coding help]

Viewing 2 posts - 1 through 2 (of 2 total)
  • #17970
    marinok
    Participant

    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!

    #18015
    Daniel Tara
    Keymaster

    Try this:

    #content{
    	width: 75%;
    }
    .entries .twocol:nth-child(odd) {
    	width: 33.3%;
    }
    .entries .twocol:nth-child(even) {
    	width: 66.7%;
    }
    #sidebar {
    	width: 25%;
    }
Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.