Forum Replies Created

Viewing 20 posts - 6,081 through 6,100 (of 14,494 total)
  • Author
    Posts
  • in reply to: Header Right Side Bar Widget Wrap #46180
    Sakin
    Keymaster

    Ok for header right text you can add in the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-left {
        float: left;
        width: 25%;
    }
    #header-right {
        float: right;
        width: 75%;
    }
    @media screen and (max-width: 960px) {	
        #header-left, #header-right { width: 100%; }
    }

    But for the menu, you cannot make it left align for “Primary Menu” as this menu will be in Header Right Sidebar. So, remove that menu from your Header Right Sidebar and then do to “Appearance => Menus => Manage Locations” and then assign your menu to “Secondary Menu” and save changes.

    in reply to: specify a maximum width #46178
    Sakin
    Keymaster

    @Sevian: Thanks and sorry your question is confusing. Can you explain what’s the maximum width are you talking about in reference with your site URL. So, that I can check in and explain.

    in reply to: How could I dis-enable the the pages tile on each pages? #46177
    Sakin
    Keymaster

    @Bryan: Please add in the following css in “Appearance => Theme Options => Custom CSS” box.
    .page #featured-post .entry-header { display: block; }

    in reply to: Woocommerce Cart -> Mobile Layout #46176
    Sakin
    Keymaster

    @Raphael: Sorry this is not in our hand and it is controlled from WooCommerce plugin. So, you need to post in their support forum.

    in reply to: Slider pictures have different size #46139
    Sakin
    Keymaster

    @Serendipity30: Please post in your site URL so that I can check in. Also which slider are you using. Are you using Post Slider or Page Slider Or Category Slider or Image Slider. If you are using Post Slider or Page Slider Or Category Slider then your image will be as Width: 754px and Height: 400px.
    Note: but id you have uploaded the featured image which is less then Width: 754px and Height: 400px, then it will load the original image size that you uploaded.

    in reply to: Underline Links #46138
    Sakin
    Keymaster

    @Kim: Can you try to add following Custom CSS:
    a { text-decoration: underline; }

    in reply to: Background #46137
    Sakin
    Keymaster

    @Joaozinho: Are you talking about the white border at the top of your footer. Then you can add the following css to remove that border:
    #colophon { border-top: none; }

    in reply to: Header Right Side Bar Widget Wrap #46136
    Sakin
    Keymaster

    Yes, I can help you with the custom css. But I need to check in your site. So, please post in your site URL.

    in reply to: How could I dis-enable the the pages tile on each pages? #46118
    Sakin
    Keymaster

    @Bryan: Please post in your site URL so that I can check in and send you the custom css.

    in reply to: Upgrade to PRO version #46093
    Sakin
    Keymaster

    That upload file exceeded error is upload limit set in your php.ini file in your server and this file should be easily updated by your web hosting server support. See this support thread in WordPress.org https://wordpress.org/support/topic/import-large-wordpress-xml-file?replies=6#post-721905

    First back up the theme in your FTP and upload the new one. In this case, if you need anything back you can just remove that new theme and load the old theme.

    in reply to: Not responsive on iPhone 6 and iPhone 6 Plus #46047
    Sakin
    Keymaster

    @Sebastian: For your site, can you try the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (max-width: 667px) {
    	.site,
    	.no-sidebar-one-column .site {
     		margin: 0;
    		width: 100%;
    	}
    }
    in reply to: Remove colored box around table on page #46044
    Sakin
    Keymaster

    @Leviticus444: It’s because you have added in <pre></pre> code in table. So, to remove the background color in pre code. You need add the following css in “Appearance => Theme Options => Custom CSS” box.
    pre { background: none transparent; }

    in reply to: Current Menu Item #46043
    Sakin
    Keymaster

    @ShawnF: In Catch Evolution theme, you can add the following css in “Appearance => Theme Options => Custom CSS” to change the current menu item to be like hover color.

    #header-menu .menu .current-menu-item > a, 
    #header-menu .menu .current-menu-ancestor > a, 
    #secondary-menu .menu .current_page_item > a, 
    #header-menu .menu .current_page_ancestor > a {
    	background: #e5e5e5; /* Show a solid color for older browsers */
    	background: -moz-linear-gradient(#f9f9f9, #e5e5e5);
    	background: -o-linear-gradient(#f9f9f9, #e5e5e5);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f9f9f9), to(#e5e5e5)); /* Older webkit syntax */
    	background: -webkit-linear-gradient(#f9f9f9, #e5e5e5);
    	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e5e5e5'); /* for IE */
    	color: #373737;
    }
    in reply to: how to use image as background in #main section ? #46042
    Sakin
    Keymaster

    @Nils-Ove: Sorry but I need your live site URL so that I can check in and let you know what’s not working.

    in reply to: Header widget area #46041
    Sakin
    Keymaster

    @sdupre: That’s nice idea. Thanks for your feedback. We will discuss about it and find the way to add it in future version updates.

    in reply to: Not responsive on iPhone 6 and iPhone 6 Plus #46040
    Sakin
    Keymaster

    @Sebastian: Just upload your screenshots in your site or any photo sharing site and paste in the URL here.

    in reply to: Upgrade to PRO version #46039
    Sakin
    Keymaster

    @matteo: For this you can ask your Website Hosting Server Support to increase the upload limit. Out themes are usually between 2 to 3mb. So, the best will to ask to increase upto 5mb.

    Yes, alternatively you can upload the theme using FTP. It’s mentioned in Theme Instruction page at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    in reply to: Home page is blank!!!??? #46010
    Sakin
    Keymaster

    @Sandra: Sorry for this I need your site URL. So, let me know once it is set to live. Or you can use hire a customizer.

    in reply to: how to use image as background in #main section ? #46009
    Sakin
    Keymaster

    @Nils-Ove: Your css should be as below:

    #main {
        background: url("http://mhtronic.no/question.jpg") no-repeat scroll center center transparent;
    }

    But for specific page then you can add in page if as prefix. For example, if you want to change in page id 85 only then the css will be as below:

    .page-id-85 #main {
        background: url("http://mhtronic.no/question.jpg") no-repeat scroll center center transparent;
    }
    in reply to: Not responsive on iPhone 6 and iPhone 6 Plus #46007
    Sakin
    Keymaster

    @Sebastian: Sorry we are waiting for iPhone6 arrival and then only we can test it. Can you send me screenshot of what you are seeing and what you want to change to .

Viewing 20 posts - 6,081 through 6,100 (of 14,494 total)