Forum Replies Created

Viewing 20 posts - 8,181 through 8,200 (of 14,505 total)
  • Author
    Posts
  • in reply to: Translate to German #24331
    Sakin
    Keymaster

    @pips: I don’t get it what you are trying to do it. If you want to start WordPress site in German Language then you need to install WordPress in German and install German Ready theme. See this for WordPress in your language.

    in reply to: Titles now displaying on Homepage Featured Content #24326
    Sakin
    Keymaster

    @youngwings: I see that you have following css in “Appearance => Theme Options => Custom CSS” box , that is why it will be hidden. Remove that css and it will be fine.

    .home .entry-header {
    display: none;
    }

    The featured content link is not an option in the theme. That link was coming as of missing closing link from the tile and image.

    in reply to: problems with the Catch-Box-Pro 2.9.3.zip update #24325
    Sakin
    Keymaster

    @Tekstiltrold: Can you let me know what goes wrong? If you need assistance in update then you can contact at http://catchthemes.com/contact-us/ . You can use this for Installation and sales/account issues.

    in reply to: Catch Everest Slider Linking #24324
    Sakin
    Keymaster

    @drshento: Sorry there is no option is WordPress to have different permalink setting settings just for BIO. As I have already replied in http://catchthemes.com/support-forum/topic/read-more-links-leading-to-404/ that permalink is WordPress core features and cannot be controlled with Theme. So, you have to remove that bio from your permalink settings. I have one option for your post slider. You can install “redirection” plugin and then redirect your slider post to the url you want through the plugin.

    in reply to: Remove "posted on" #24323
    Sakin
    Keymaster

    @meklein163: Try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box and if this doesn’t work then post your site URL and will check in.
    .entry-meta { display: none; }

    in reply to: No featured thumbnail issue on Facebook share of homepage #24313
    Sakin
    Keymaster

    @meklein163: I just check in your site and see that you have installed “JetPack” plugin and “Facebook Share Thumbnails” plugin. Both are sending og:image data. You can disable any one plugin. I see the image when I share in my Facebook. It is using the image as “http://i1.wp.com/www.theclimatemobilization.org/wp-content/uploads/2014/03/CM_Logo_Round03-42.png”

    You can test your site at https://developers.facebook.com/tools/debug/

    in reply to: Added logo, killed site! Halp! #24309
    Sakin
    Keymaster

    @QuiGonJ: Yes, most of these are available in Catch Evolution Pro theme like color options, footer editor options and so on. For more details visit http://catchthemes.com/theme-instructions/catch-evolution-pro/

    in reply to: Theme for musicians #24287
    Sakin
    Keymaster

    @kat22: If you have used Catch Everest. Then you will enjoy Catch Kathmandu as well. But the choices depends on your need. Check out free themes at http://catchthemes.com/themes/category/free/

    in reply to: too much space menu-content #24285
    Sakin
    Keymaster

    @Mark: I see that you have made the title hidden. That is why there is different gap. Try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .page .entry-content { padding-top: 0; }

    in reply to: Widget for 1 page #24284
    Sakin
    Keymaster

    @Joaozinho: Oh so you need one different widget is your 32 different pages. Then you install “Jetpack” plugin and activate “Widget Visibility” module is Jetpack plugin. Then you can just use “Main Sidebar” only and remove widgets from all other sidebars. As this “Widget Visibility” module will give you option to make individual widgets visible is difference page. See this http://jetpack.me/support/widget-visibility/

    in reply to: background #24282
    Sakin
    Keymaster

    @Raminder: You can add the Background image from “Appearance => Background”

    Sakin
    Keymaster

    @youngwings: You can ad the following css in “Appearance => Theme Options => Custom CSS” box to hide the slider arrow.
    #slider-nav { display: none; }

    Sakin
    Keymaster

    @Emma Lindhagen:
    1. I use the layout with content on the left and the menu on the right. Is there a way to make the content side a bit wider and the menu side a bit narrower?
    — This is big challenging as of responsive design. I have come up with the CSS as per our sidebar. Can you try adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {
    #primary {
        margin: 0 -31.5% 0 0;
    }
    #content {
        margin-right: 34.6%;
        width: 62.4%;
    }
    #secondary {
        width: 28.5%;
    }
    }

    2. I’ve noticed when you insert images and add a caption, there is a – before the caption each time. Is there a way to remove this or otherwise edit how the caption box will look?
    — You can ad the following css in “Appearance => Theme Options => Custom CSS” box.

    .wp-caption .wp-caption-text:before {
        content: none;
    }
    .wp-caption .wp-caption-text {
    	padding-left: 4px;
    }
    in reply to: Warning error on homepage slider #24223
    Sakin
    Keymaster

    @MediaMixChris: This error is from Plugin Toggler Hide Title. Just deactivate that plugin and it will be fine. For plugin error, you need to ask in Plugin author support forum.

    in reply to: Widgets to share the same area in sidebar #24222
    Sakin
    Keymaster

    @Jonathan: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #secondary { background-color: #fff; }
    #secondary .widget { border: none; }
    in reply to: Read More links leading to 404, then to a Page #24180
    Sakin
    Keymaster

    @Annie: The permalink structure of WordPress is stored in `.htaccess’ file. This falls under file permission in your server. 644 is normally required and recommended file permission for .htaccess file. So, if you can contact your hosting server support and change the permission to .htaccess file then the changes in “Settings => Permalinks” will work. Otherwise, you have to manually add structure in .htaccess file.

    Permalink is not controlled by theme. It is controlled by Server and WordPress settings. See more details about Permalink and .htaccess file here http://codex.wordpress.org/Using_Permalinks

    in reply to: Displaying Titles Only in Search #24178
    Sakin
    Keymaster

    @NateSirrah: Yes you need to clear the cache if you have installed any. Thanks for posting it back as fixed.

    in reply to: Different Header for Different Pages #24177
    Sakin
    Keymaster

    @Jonathan: Sorry this option is not there, you need to build child theme and do the custom coding.

    in reply to: Position Of Social Icons In Footer Area #24176
    Sakin
    Keymaster

    @cpoli: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box to center the social icon in the footer.

    #site-generator .social-profile {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }
    .social-profile ul li {
        display: inline-block;
        float: none;
    }

    Which custom text you are talking about? You are not supposed to add Text in “Code to display on Footer” box. This box is created to add any scripts like analytics, tracking code and all.

    in reply to: Homepage default slider #24160
    Sakin
    Keymaster

    @shmuelhonig:
    1. For space above and below title, you can add the following css in “Appearance => Theme Options => Custom CSS” box. If you want o further reduce, then you can reduce padding more.
    #header-content { padding: 15px 0; }

    2. Same here, add the following css in “Appearance => Theme Options => Custom CSS” box.
    #main { padding-top: 15px; }

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

    #content .entry-title { padding-bottom: 0; }
    #content .hentry { padding-top: 15px; }

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

    #secondary .widget { padding-top: 15px; }
    #secondary .widget-title { padding-bottom: 0; }
Viewing 20 posts - 8,181 through 8,200 (of 14,505 total)