Forum Replies Created

Viewing 20 posts - 6,761 through 6,780 (of 14,497 total)
  • Author
    Posts
  • in reply to: Aweber Forms Using a Text Widget #41892
    Sakin
    Keymaster

    @Signal512: I check in your site and I don’t see any code there. You just have 3 widgets: Awesome Posts, Awesome Categories and Awesome Comment. But I don’t see any Advertisement widgets there.

    Ok I just see that WP Super Cache plugin activate. Can you go to WP Super Cache plugin settings and clear your cache.

    in reply to: How do I add an advertising tracking code to my site #41887
    Sakin
    Keymaster

    @highschoolfootballamerica: Which theme are you using it. If you are using our Pro/Premium themes, then you will see the Header and Footer Code at “Appearance => Theme Options => Webmaster Tools”. You can add it in Footer Code box.

    in reply to: Aweber Forms Using a Text Widget #41886
    Sakin
    Keymaster

    @Signal512: Can you add the code in “2. Catch Everest: Advertisement” widget to Main Sidebar from “Appearance => Widgets”. As it’s working for me. I added your code and it’s working fine. So, just code the following code in 2. Catch Everest: Advertisement and send me your site URL if it is not working.

    <div class="AW-Form-1379976796"></div>
    <script type="text/javascript">(function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "http://forms.aweber.com/form/96/1379976796.js";
    fjs.parentNode.insertBefore(js, fjs);
    }(document, "script", "aweber-wjs-2bhvmzz4g"));
    </script>
    in reply to: Shortcode ultimate / Transparent Images #41885
    Sakin
    Keymaster

    Hello Jan,

    I just check in your site and see that you have added in Meta Slider and it’s working fine. I don’t see like what you have mentioned.

    Where is your tab item. I don’t see it.

    About the white frame, the frame must be there in your logo. As We have added png logo in demo site http://catchthemes.com/demo/simplecatch-pro/ and it is not showing white frame. Can you check in your image.

    If you want to remove the border, then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    img[class*="align"], img[class*="wp-image-"] {
    	border: none;
     	padding: 0;
    	max-width: 100%;
    }
    a:focus img[class*="align"], a:hover img[class*="align"], a:active img[class*="align"], a:focus img[class*="wp-image-"], a:hover img[class*="wp-image-"], a:active img[class*="wp-image-"] {
    	background: none transparent;
    	border: none;
    }

    To center the page title, you can just add the following css in “Appearance => Theme Options => Custom CSS” box.
    .entry-title { text-align: center; }

    For Adsense advertisement, sorry there is no option to add it it above the header. You can add in header right sidebar from “Appearance => Widgets”. The only option to add it above header will be through Child Theme. So, you can build child theme and then in your child them functions.php, you can add in the following css where you can paste in your adsense code instead of <!-- Add in your Adsense code here -->

    // Added Adsense code above header
    function simplecatch_child_headercode() { ?>
    	<!-- Add in your Adsense code here -->
        
    <?php	
    }
    add_action( 'simplecatch_before_headercontent', 'simplecatch_child_headercode', 10 );

    Regards,
    Sakin

    in reply to: menu doesn't appear on mobile device #41882
    Sakin
    Keymaster

    @fluegasknowhow: I see that you have customize the script. Either you have minified js as I couldn’t find catchevolution-menu.min.js js file in your site. If you see in our demo site http://catchthemes.com/demo/catch-evolution/, you will find the js
    http://catchthemes.com/demo/catch-evolution/wp-content/themes/catch-evolution-pro/js/catchevolution-menu.min.js . So, please check in your setting and it will work fine.

    in reply to: Genericons #41881
    Sakin
    Keymaster

    @Scholz: What do you want to do it? We will be adding option to change most of the ICON to Generion soon.

    in reply to: Blank space above header image #41880
    Sakin
    Keymaster

    @fluegasknowhow: You can replace your css
    #header-content { padding: 0; }

    With the following css, as you are not using Logo:
    #header-content { display: none; }

    in reply to: submenu: dropdown column width #41869
    Sakin
    Keymaster

    @fluegasknowhow: Yes sure, you can increase the width in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box. IN the following css, I have already increased 30px as initially it was 205px and 185px. Make sure you increase equal image in both the css.

    #header-menu ul.menu ul { width: 235px; }
    #header-menu ul.menu ul a { width: 215px; }
    in reply to: Site Title Hover Color #41868
    Sakin
    Keymaster

    @@Danielle: Your text under Featured Content is aligned center. But your image is aligned left and your image with is small for 3 column layout. So, either you need to center your images or need to upload the larger image. If you want to center images, then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #featured-post img.wp-post-image { margin: 0 auto; }

    in reply to: setting maximum width #41861
    Sakin
    Keymaster

    @surianto: It’s bit complicated, you might need to hire customizer to more customization. For now, I have manage to come up with the css. Can you try to add the following css in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 1020px) {
    	#main-slider, #main-wrapper .container, #supplementary { width: 1000px; }
    	#main-slider { margin: 0 auto; }
    	#primary { width: 640px; }
    	#secondary { width: 330px; }
    }
    in reply to: Customizing Post Pages #41860
    Sakin
    Keymaster

    @greengiant: First can you update your Catch Kathmandu Pro theme to latest version 3.0 and then check in.

    in reply to: Site Title Hover Color #41859
    Sakin
    Keymaster

    @Danielle: Can you post in your site URL and then I will check in.

    For Site title hover color: You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box

    #site-title a:hover,
    #site-title a:focus,
    #site-title a:active {
    	color: #7c9b30;
    }

    For menu color, you can go to “Appearance => Theme Options => Color Options => Menu Color Options”, change the color as per your need and save changes.

    For content color, you can go to “Appearance => Theme Options => Color Options => Site Color Options”

    in reply to: Shortcode ultimate / Transparent Images #41858
    Sakin
    Keymaster

    Hello Jan,

    Can you post in your site URL and explain then I can check for conflict with Shortcode unlimited.

    Then for the image also send me the URL and then I will check in and send your custom css to remove that.

    Regards,
    Sakin

    in reply to: Catch Kathmandu Pro update to 2.8 #41857
    Sakin
    Keymaster

    @greengiant: The best way to upgrade Pro theme: Just install Catch Updater plugin http://catchthemes.com/wp-plugins/catch-updater/, instruction in included.

    in reply to: Menu width? #41856
    Sakin
    Keymaster

    @fluegasknowhow: It’s in-build slider that comes with Catch Everest Pro theme.

    in reply to: Size #41819
    Sakin
    Keymaster

    @Albert: Sorry I don’t understand it. Your site size is same as the Catch Kathmandu demo size both at 1280px width in large screen and adjust as the screensize goes down.

    in reply to: setting maximum width #41818
    Sakin
    Keymaster

    @surianto: Sorry, why do you want to do that. This looks so perfect in large screen. This is responsive design considering large screen and small mobile devices. So, don’t worry it will adjust as per the screen-sizes. And to change as your mention will need lot of css changes which will effect your site loading.

    in reply to: Featured Images; disabling image downloads? #41817
    Sakin
    Keymaster

    @Consciousness: You can use either WordPress in-build editor where you can click on edit when you upload the image or from media library at “Media => Library” from your WordPress dashboard. Or you can plugin like “Post Thumbnail Editor”.

    @Bouncedancer: Yes if you are working with Excerpt Mode then, featured image is almost necessary as it will just display the excerpt text without any image. But if you choose “Full Content Display” layout then it will show the content and image before <!--more--> tag. See this on more tag http://en.support.wordpress.com/splitting-content/more-tag/

    in reply to: Adding fonts #41816
    Sakin
    Keymaster

    @Albert: For now you can just build child theme and then in your child theme style.css you can add the following css:

    @import url(http://fonts.googleapis.com/css?family=Tangerine:400,700);
    h1, h2, h3, h4, h5, h6 { font-family: 'Tangerine', cursive, sans-serif; }
    in reply to: How to show images in posts on the homepage #41796
    Sakin
    Keymaster

    @nac2311: Yes you can use it for unlimited sites that you own. But you are not allowed to resell or redistribute it. 🙂

Viewing 20 posts - 6,761 through 6,780 (of 14,497 total)