Forum Replies Created

Viewing 20 posts - 3,101 through 3,120 (of 14,507 total)
  • Author
    Posts
  • in reply to: Problem with Page Header on Multilingual-Site #60737
    Sakin
    Keymaster

    @Tobias: try changing plugin or contact plugin author. They must have support and documentation.

    in reply to: Problem with Page Header on Multilingual-Site #60735
    Sakin
    Keymaster

    @Tobias: If you have post in both the site then you might want to check with the language plugin author support forum. This is more of plugin issue. Full Frame Pro theme is compatible with multi-language plugin like WPML, Polylang, qTranslate X, mqTranslate and qTranslate Plugins. It has been validated by WPML.

    in reply to: Background image for page itself? #60734
    Sakin
    Keymaster

    @Michael: Yes, you can change the background image just for block quotes using the following css:

    #content blockquote {
        background-image: url("your-image-url");
    }
    in reply to: Featured Slider Issues #60733
    Sakin
    Keymaster

    @Christine: Thanks and can you share that plugin name so that it will be beneficial for other users as well.

    in reply to: different header image on blogs #60732
    Sakin
    Keymaster

    @roche5000: You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .post-by .no-padding-left,
    .post-by li.last {
        display: none;
    }
    #main #content ul.post-by li {
        background: none;
        padding: 0;
    }
    in reply to: Breadcrumbs, change the background colour #60722
    Sakin
    Keymaster

    @cindy: So, to make the background color of your breadcrumb wrapper to black, you need to add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #breadcrumb-list .wrapper {
        background-color: #000;
    }

    For hover, you can change the color code in the following css as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #breadcrumb-list a:hover,
    #breadcrumb-list a:hover span {
    	color: #404040;
    }
    in reply to: Featured Slider #60721
    Sakin
    Keymaster

    @Pier: Yes, we can use mixed post/page slider using Post/Page IDs. So, we will keep this as your feedback to development team.

    in reply to: 3 questions #60720
    Sakin
    Keymaster

    @Cattext: For #2, you can adjust the padding in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #hgroup-wrap {
        padding-bottom: 50px;
    }
    #main {
        padding-top: 50px;
    }
    in reply to: Featured Post Slider dissappeared #60718
    Sakin
    Keymaster

    @mbrennan: Then update to latest version. It’s already version 3.3.2 https://wordpress.org/themes/catch-kathmandu/ . But be careful looks like you have edited core theme files. So, the edits inside your core theme files catch-kathmandu will be reverted back to original when you update the theme.

    in reply to: Remove Search Box #60716
    Sakin
    Keymaster

    @chrisnewitt: Thanks 🙂

    in reply to: Search results page #60715
    Sakin
    Keymaster

    @effess: To hide that in search result page, you can add the following css in “Appearance => Theme Options => Custom CSS” Box:
    .search-results .entry-meta { display: none; }

    If you are using Breadcrumb NavXT plugin and then you need to check that plugin settings. As you can see in our demo site http://catchthemes.com/demo/catch-kathmandu//?s=hello&submit=Search it’s working fine.

    in reply to: Uploading Newly Purchased Theme #60713
    Sakin
    Keymaster

    @iamamiri: I have already emailed you. Please check in your spam is you haven’t received it.

    in reply to: Center Slider #60708
    Sakin
    Keymaster

    @Kim: I don’t see option to move that slider between two sidebar. I only see that in Catch Evolution Pro theme. So, in order to move that, you need to add the following function in your child theme functions.php file.

    function catchflames_unhook_functions() {
    	remove_action( 'catchflames_before_main', 'catchflames_slider_display', 40 );
    }
    add_action( 'init','catchflames_unhook_functions');
    
    add_action( 'catchflames_before_content', 'catchflames_slider_display', 40 );

    It’s been really out with email as I am working on supporting online. Will check in and reply you.

    Sakin
    Keymaster

    @Leonie: Sorry I don’t get it what you mean. I just check in with Google Structure Data testing tool and it’s showing good. You can also check from https://developers.google.com/structured-data/testing-tool/

    in reply to: Widget panel (backend) #60706
    Sakin
    Keymaster

    @Michaela: It’s work fine when I check in our server with Catch Kathmandu theme, maybe you have plugin or script that is blocking that. We will not force widget like that and we are not allowed to do that as per WordPress.org theme review guideline. So, try disabling plugin one by one to check in if that’s plugin issue. If it’s still not working then let me know it then I will email you to check in details.

    in reply to: Primary Sidebar showing below content #60705
    Sakin
    Keymaster

    @Tazzipoo: Looks like you have customize core theme style.css file. You shouldn’t edit that file. Actually, you should add/edit any file inside core theme directory catch-reposnive. So, you need to edit your theme using theme customizer at “Appearance => Customize” and if you want to do advance coding then you can build child theme and add it as per your need. But if you simply want to change css then you can add your custom css in “Appearance => Theme Options => Custom CSS Options” box.

    Why you don’t edit core theme files like style.css? It’s because all your edits will be reverted back to original when you update the theme and also when you have problem like this we cannot check the issue. So, please revert back your theme to latest version and then backup your style and add in either as child theme or as custom css.

    The issue, I see in your style.css is the following css:

    .site-content {
    	background-color: rgba(0, 0, 0, 0.7);
    /* rgb = 0 0 0 is black color */
    /* a = 0.7 is 70% of alpha channel */
    };
    }

    Replace that with:

    .site-content {
        background: #444;
        background: rgba(0,0,0,0.7);	
    }
    Sakin
    Keymaster

    @Hair Bear: For left align image in your slider you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #main-slider img {
        float: left;
    }

    But if you want it right, then you need to add in the following css instead:

    #main-slider img {
        float: right;
    }

    For slider effect, you have option in “Appearance => Theme Options => Featured Slider => Slider Options => Transition Effect”

    Yes, you can move your Featured Content below your home content. So, that you have home content just below the slider. For that, go to “Appearance => Theme Options => Featured Content => Featured Settings => Featured Content Position” and check in “Before Footer”

    Also there is on option to add Headline content below your slider from “Appearance => Theme Options => Promotion Headline Options” and add in manual content.

    in reply to: Problem with Page Header on Multilingual-Site #60702
    Sakin
    Keymaster

    @Tobias: What is your setting in “Appearance => Customize => Static Front Page”. If you have checked “A Static page” and selected page that it will display that. But if you leave it as “Your latest posts”, the it will show your latest. So, if you have latest post in both German and English, then it will be fine. But if you only have in German and not in then it will show like that.

    in reply to: Uploading Newly Purchased Theme #60700
    Sakin
    Keymaster

    @iamamiri: where are you uploading to. To upload the theme zip file, you need to go to “Appearance => Themes => Add New => Upload Theme”, then browse the zip file and upload it.

    I will also contact you through email. Just in case if you want me to install that for you.

    in reply to: Stylesheet not active #60697
    Sakin
    Keymaster

    @Michaela: Oh thanks for posting issue and solution. It will surly be helpful to others.

Viewing 20 posts - 3,101 through 3,120 (of 14,507 total)