Forum Replies Created

Viewing 20 posts - 7,201 through 7,220 (of 14,497 total)
  • Author
    Posts
  • in reply to: Nothing Found Error on Home page HELP! #35559
    Sakin
    Keymaster

    @piscesflydesigns: Sorry this social media is not controlled from theme. You need to use plugin. I would recommend you to use WordPress SEO by Yoast plugin, where you can setup setting for your Social Media. After you activate that module it will show the featured image with your URL. Also you can look for other interesting plugins at http://wordpress.org/plugins/

    in reply to: Nothing Found Error on Home page HELP! #35488
    Sakin
    Keymaster

    @piscesflydesigns: You can add the following css in “Appearance => Theme Options => Custom CSS” box, which will hide it for user who is not logged in.

    .entry-meta { display: none; }
    .logged-in .entry-meta { display: block; }
    in reply to: Nothing Found Error on Home page HELP! #35481
    Sakin
    Keymaster

    @piscesflydesigns: Thanks for your appreciation. Have a nice day.

    in reply to: Nothing Found Error on Home page HELP! #35469
    Sakin
    Keymaster

    @piscesflydesigns: Looks like you don’t have post to display in Homepage. For this, either you need to create new post and publish it or you can assign static homepage from “Settings => Readings” and in “Front page displays”, select “Front page” and choose the page you want to show in homepage and save changes.

    in reply to: menus on phone #35468
    Sakin
    Keymaster

    @bxdavi2: Site looks heavily customized. I see that you have remove the footer in Catch Box Free Theme. But you are not supposed to remove theme Catch Box from footer. You need to mention this somewhere. This is only the recognition that we receive for providing free theme and free support. I hope you understand this.

    If you restore the footer file and functions then menu will show up. To edit the footer copyright information, you need to upgrade to Catch Box Pro theme where you will get Footer Editor option in Theme Options panel.

    in reply to: Google Ads customization #35444
    Sakin
    Keymaster

    Hi Michaela,

    Looks like you need to upgrade to Pro version.

    1. Then you can use “2. Catch Kathmandu: Advertisement” widget and add your Google Ads code in Header Right Sidebar.

    2. For this you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #primary { width: 900px; }
    #secondary { width: 240px; }
    @media screen and (max-width: 1344px) {
    	#primary { width: 840px; }
    }
    @media screen and (max-width: 1280px) {
    	#primary { width: 770px; }		
    	#secondary { width: 220px; }	
    }
    @media screen and (max-width: 1152px) {
    	#primary { width: 690px; }		
    	#secondary { width: 200px; }
    }	
    @media screen and (max-width: 1024px) {
    	#primary { width: 630px; }		
    	#secondary { width: 200px; }	
    }
    @media screen and (max-width: 960px) {	
    	#primary, #secondary { width: 100%; }
    }

    3. You have option to use Page Sidebar and further choose Optional sidebar one, Optional sidebar two and optional sidebar three. So, depending on the pages, you can choose the sidebar to display. You can add different ads widgets in different sidebar. If you want for options, then you can activate “Jetpack” plugin “Widget Visibility” module and then add widget with visibility condition.

    Regards,
    Sakin

    in reply to: Replacing tinynav #35432
    Sakin
    Keymaster

    @dmcleman: Please post in your site URL.

    in reply to: Center Logo above Header Image #35431
    Sakin
    Keymaster

    Hello Kent,

    First, you need to disable your Header Right Sidebar from “Appearance => Theme Options => Header Right Sidebar Options” and then check in “Disable Header Right Sidebar”.

    Then you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #header-left {
        float: none;
        text-align: center;
        width: 100%;
    }
    #site-logo {
        display: block;
        float: none;
        margin: 0 auto;
        width: auto;
    }
    #site-logo a {
        display: inline-block;
    }
    in reply to: Hide header and footer on selected pages #35429
    Sakin
    Keymaster

    @gladavisj: It depends on what you want to hide it. For example: ff you just want to hide Masthead then you can start you condition tag before
    <header id="masthead" role="banner">
    and end after
    </header><!-- #masthead .site-header -->

    in reply to: Pictures not sized right #35364
    Sakin
    Keymaster

    @KingBetts: Sorry but this “No Sidebar, Full Width” layout is only there in Catch Evolution Pro theme and it will automatically take larger image size of 1190px by 500px. But I see that you are using Catch Evolution Free version and there you don’t have this option.

    But if you can customize it, then it’s bit technical and you can accomplish this in your free version as well. Sorry, I will only be able to guide you in this. You first need to create Child Theme. Then copy content.php file in your child theme and then edit the following code with your image size.
    <?php the_post_thumbnail( $imagesize ); ?>

    in reply to: Remove time, author, categories & tags from blog posts #35361
    Sakin
    Keymaster

    Hi Maeve,

    Thanks for your appreciation.

    You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide the entry meta.
    .entry-meta { display: none; }

    Have a nice day.

    Regards,
    Sakin

    in reply to: Hide header and footer on selected pages #35357
    Sakin
    Keymaster

    @gladavisj: You shouldn’t remove get_header(); and get_footer();. These are required.

    if you want to edit that you can either do from action hook or you can copy header.php and footer.php files and add conditional tags.

    For example for pages you can use is_page() or is_page_template(), depending on your requirement.

    in reply to: Hyphens #35322
    Sakin
    Keymaster

    @Michael: There is issue in your custom CSS. there is no closing bracket of this css. Missing }. Add the missing } where you need for only devices with 480px.
    @media screen and (max-device-width: 480px){

    in reply to: Hyphens #35312
    Sakin
    Keymaster

    @Michael: You are using different theme so you need to add the following css in “Appearance => Theme Options => Custom CSS” box.

    #content article {
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    in reply to: Hide header and footer on selected pages #35306
    Sakin
    Keymaster

    @gladavisj: Sorry I don’t understand what you are trying to do it. If you are building custom page template then why do you need condition tag. You can assign your page template to specific page you want.

    Note: when you are adding template or editing any theme files, you need to build child theme and edit it. I hope you haven’t edited core theme files inside ‘catch-everest-pro’ directory. As all the edits in ‘catch-everest-pro’ directory will be reverted back to original when you update the theme.

    in reply to: problems with tags in posts #35305
    Sakin
    Keymaster

    @Farmaciola: This looks like there is issue with Light box integration. So, you can try disabling Lightbox plugin and check in or you need to check in what you have customized.

    in reply to: side bar left sizing #35303
    Sakin
    Keymaster

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

    @media screen and (min-width: 961px) {	
    #primary { width: 75%; }
    #secondary { width: 25%; }
    }
    in reply to: Primary Menu #35302
    Sakin
    Keymaster

    Hello Gretchen,

    I am not so sure from which css modification it’s causing that. But you can add the following css in “Appearance => Theme Options => Custom CSS” box to fixed that.

    #header-menu ul.menu a {
        font-weight: normal !important;
    }

    Regards,
    Sakin

    in reply to: menu font size #35300
    Sakin
    Keymaster

    Hi Maeve,

    There is no specific option to change the font size of menu. You can change the menu font size by changing the font in the following css and then add it in “Appearance => Theme Options => Custom CSS” box.

    #header-menu ul.menu a {
        font-size: 14px;
    }

    Regards,
    Sakin

    in reply to: Question mark / strange file on homepage #35299
    Sakin
    Keymaster

    @theresem: Yes, there is missing image in your page ID 12, that is Welcome page. So, you need to edit that page and re-upload the second image or remove that second image that is Purple-frock.jpg image file.

Viewing 20 posts - 7,201 through 7,220 (of 14,497 total)