the second column appears below the first column

1 replies
  • WEB DESIGN
  • |
I have a two column wordpress theme.

It seems like the second column is push down below the first column.

I know it is due to the width of the first column.

This is my site

I know that I need to adjust the width of the first column but where can I do that?

It is under the appearance, editor section but which one I need to work with?

Appreciate for your help and advice

Aaron
#appears #column
  • Profile picture of the author xythis
    I see the columns (post on left, and recent posts) side by side just fine. Is there another column that I'm missing somewhere?

    This theme uses responsive CSS that moves the right-side column to under the first column when the browser size is below a certain threshold. So when the browser is <800px wide, it pushes the right-side column to the bottom of the page. When the browser is <600px wide, I can see that it's removing some padding between elements.

    This is what your theme is designed to do and for good reason. But if you find it isn't functioning properly, or you want to get rid of the responsive CSS functionality, you can edit themes/pagelines/style.css and look for a section marked:

    Code:
    /* 
     * @ Responsive Design
     ****************************************/
    In that section, the listed CSS properties and values are activated ONLY when they meet the requirements such as max-screen-size 800, max-screen-size 600 etc are fulfilled.

    You can just delete that whole Responsive Design section if you really want it to stop.
    {{ DiscussionBoard.errors[5995507].message }}

Trending Topics