Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #50250
    Jean-Paul
    Participant

    Hi,

    Love the theme. Is it possible to change the ratio between columns?

    I’m using “Right Sidebar” and would like to decrease the width.

    Is that possible without destroying the responsive design?

    If so how can I change it?

    Regards Jean-Paul

    #50264
    Sakin
    Keymaster

    @Jean-Paul: You can just change the width for large screen sizes. Following is the CSS for various screen sizes. You can change the width of Primary and Secondary as per your need. Right Sidebar is Secondary and Content is Primary. So, if you decrease the secondary by 10px then you should increase the primary by 10px. Then after editing, you can add the css in “Appearance => Theme Options => Custom CSS” box:

    /* For Screen Size above 941px */
    @media screen and (min-width: 941px) {
        .two-columns #primary { width: 540px; }
        .two-columns #secondary { width: 340px; }
    }
    /* For Screen Size above 1001px */
    @media screen and (min-width: 1001px) {
        .two-columns #primary { width: 600px; }
        .two-columns #secondary { width: 340px; }
    }	
    /* For Screen Size above 1101px */
    @media screen and (min-width: 1101px) {
        .two-columns #primary { width: 680px; }
        .two-columns #secondary { width: 340px; }
    }
    /* For Screen Size above 1153px */	
    @media screen and (min-width: 1153px) {
        .two-columns #primary { width: 740px; }
        .two-columns #secondary { width: 340px; }
    }
    /* For Screen Size above 1281px */	
    @media screen and (min-width: 1281px ) {
        .two-columns #primary { width: 750px; }
        .two-columns #secondary { width: 400px; }
    }
    #50305
    jimbo411
    Participant

    Hi,

    If I don’t use sidebars on a page can I use the full width for the primary page instead of just centralising the same size page?

    #50323
    Sakin
    Keymaster

    @Jimbo411: Yes, in Catch Flames Pro you can choose No Sidebar, Full Width layout to remove the sidebar and make it full width. For that, just go to “Appearance => Theme Options => Layout Options” and select “No Sidebar, Full Width” and save changes.

    #50330
    jimbo411
    Participant

    I’m using Catch Evolution but not pro. Is it a pro option only?

    #50362
    Sakin
    Keymaster

    @Jimbo411: Yes that option is there only in Pro version. There are lot of addition features in pro version. You can check out more about additional featured from theme instructions page at http://catchthemes.com/theme-instructions/catch-flames-pro/

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Default Layout Option’ is closed to new replies.