Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #55481
    Guillaume
    Participant

    Hi,

    How can I do to get a larger sidebar on the right on my website with Catch Kathmandu Pro Theme ?

    Thanks for your help.

    #55501
    Sakin
    Keymaster

    @Guillaume: If you want larger sidebar then you need to decrease the content width. Let me know your desire width and site URL then I will send you custom css that you can add to change the width.

    #55559
    Guillaume
    Participant

    Thanks for your answer but my site is not online yet! But I’ll try changing width. Can you just tell me the line number in the css where I’ll have to change the value?

    #55586
    Sakin
    Keymaster

    @Guillaume: You shouldn’t edit any core theme files like style.css, index.php, functions.php and so on, inside ‘catch-kathmandu-pro’ theme directory. As these files will be reverted back to original when you update your theme.

    So, to edit css, you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in child theme style.css

    So, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #primary { width: 750px; }
    #secondary { width: 380px; }
    @media screen and (max-width: 1344px) {
    	#primary { width: 700px; }
    	#secondary { width: 380px; }
    }
    @media screen and (max-width: 1280px) {
    	#primary { width: 620px; }
    	#secondary { width: 360px; }
    }
    @media screen and (max-width: 1152px) {
    	#primary { width: 540px; }
    	#secondary { width: 340px; }
    }
    @media screen and (max-width: 1024px) {
    	#primary { width: 480px; }
    	#secondary { width: 340px; }
    }
    @media screen and (max-width: 960px) {	
    	#primary, #secondary { width: 100%; }
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘I'd like a larger sidebar on the right’ is closed to new replies.