Forum Replies Created

Viewing 20 posts - 6,101 through 6,120 (of 14,505 total)
  • Author
    Posts
  • 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 .

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

    @Sandra: Your latest post will display the author and date. If you specify specific static page then it will not display author and date.

    If you want to remove author and date from your posts then you can add in the following css in “Appearance => Theme Options => Custom CSS” box.

    .entry-meta .by-author,
    .entry-meta .date {
        display: none;
    }
    in reply to: Home page is blank!!!??? #45997
    Sakin
    Keymaster

    @Sandra: Sorry I would not be able to say without looking at your site. If you have disable all sidebar and just enabled latest post or page. Then what’s your reading settings. Go to “Settings => Readings” and check our settings.

    in reply to: Contact details in header #45996
    Sakin
    Keymaster

    @Riwka: Sorry this option is not there in Catch Box Free Theme. For this you need to upgrade to Catch Box Pro theme and you can add contact information in header right sidebar from “Appearance => Widgets”

    in reply to: Subtitle and Footer translation #45941
    Sakin
    Keymaster

    @Virgile: If you find the way to translate and found that plugin is easy then yes sure use that plugin. I have also heard about that plugin.

    in reply to: Subtitle and Footer translation #45938
    Sakin
    Keymaster

    @Virgile: Sorry we are not expert in translation and you should ask in plugin support forum for that. We have no idea about that plugin. We have only worked with WPML translation plugin and they help us to make Catch Kathmandu Pro compatible with WPML. See this http://wpml.org/theme/catch-kathmandu-pro/

    in reply to: Bad display everst pro in IE8 #45919
    Sakin
    Keymaster

    We normally don’t support IE8 but you are saying that it’s issue only with your site and not in our demo site. So, I am bit interested in looking at. You can upload the screenshot in your site and send me your screenshot URL and then I will check in.

    in reply to: Problem with a Nextgen gallery #45918
    Sakin
    Keymaster

    @Adri54: Looks like come conflict with plugin and excerpt text. So, can you edit http://www.unssmeuse.org/wordpress/?p=161 add the text in ‘Excerpt Box’ of that page. See this screenshot which shows excerpt box where you can add in custom excerpt text http://www.pinterest.com/pin/548594798330200958/

    in reply to: How Do I Enlarge Logo Adventure Pro #45910
    Sakin
    Keymaster

    @John: I see that you have following css in your custom css:

    #masthead.fixed-header #site-logo img {
        max-height: 60px;
        padding-top: 1px;
        padding-bottom: 1px;
    }

    Replace that with the following css:

    #site-logo img,
    #masthead.fixed-header #site-logo img {
        max-height: 60px;
    }

    Further, add the following css in “Appearance => Theme Options => Custom CSS” box.

    #masthead.fixed-header {
        padding-top: 15px;
    }
    .fixed-header #header-right,
    #header-right {
        float: right;
        padding-top: 15px;
    }
    in reply to: Custom Fonts for headings etc? #45909
    Sakin
    Keymaster

    @riwsask: If you have Paid License then yes, you can use it by Font-face. You can build child theme and then in your child theme style.css you can use font-face using Font generator http://www.fontsquirrel.com/tools/webfont-generator.

Viewing 20 posts - 6,101 through 6,120 (of 14,505 total)