Forum Replies Created

Viewing 20 posts - 2,221 through 2,240 (of 14,492 total)
  • Author
    Posts
  • in reply to: New blog post won't show up on main page #67121
    Sakin
    Keymaster

    @Bobby: It is showing in main page. Can you refresh your browser and check in.

    in reply to: Title and H1 – which to remove/how to remove? #67120
    Sakin
    Keymaster

    @219inc: Yes, you are right. If you only want to remove permalink then replace following code
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>

    with the following:
    <h1 class="entry-title"><?php the_title(); ?></h1>

    in reply to: Category Title; Description (Static Text); url #67119
    Sakin
    Keymaster

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

    .page-title { visibility:hidden; }
    .page-title span { visibility:visible; float: left; }

    Then to remove the category in url, you can use plugin like Yoast SEO and go to “SEO => Advanced => Permalinks” and then click on “Strip the category base (usually /category/) from the category URL.” and save it.

    in reply to: Problem with sidebars and plugins #67118
    Sakin
    Keymaster

    @Deborah: Ok I will check in the issue as soon as possible and update it. Looks like there is issue in options panel.

    in reply to: Widget "Search" to the Top in Mobile View? #67117
    Sakin
    Keymaster

    @Christian: You can add the following css to hide sidebar in mobile view.

    @media screen and (max-width: 960px) {
        #secondary { display: none; }
    }
    in reply to: Header Image won't let me change size #67107
    Sakin
    Keymaster

    @Chris: That is just recommended size, you can upload any size as you like it. Just click on “Don’t Crop”. See this screenshot https://www.pinterest.com/pin/548594798331307420/

    in reply to: Title and H1 – which to remove/how to remove? #67106
    Sakin
    Keymaster

    @219inc: You can hide that by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    #content .entry-header { display: none; }

    But if you want to remove it, then you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/. You can also download child theme from there. Then you can copy content-page.php file to your child theme and remove the following code:

    <header class="entry-header">
    	<h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'catch-evolution' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    </header><!-- .entry-header -->
    in reply to: Mobile Menu Not working on Apple or Android #67097
    Sakin
    Keymaster

    @KelseyAlbers: Have you edit/added any files inside catch-base theme folder, then remove that. If you haven’t change any files, then it must be plugin issue. Try deactivating plugin one by one to find the conflicting plugin.

    in reply to: First blog post on homepage in blog style #67096
    Sakin
    Keymaster

    @sarag: Sorry I don’t get it what you mean. As you homepage has featured image, title, and excerpt. But if you want large featured image then you need to change theme to like Catch Everest theme.

    in reply to: Footer Menu Align #67095
    Sakin
    Keymaster

    @ShoreBeing: I don’t see padding between you main menu and slider. If you want to add in then you can add the following css:
    .nav-primary { padding-bottom: 10px; }

    To remove that dot, you can add the following css:
    #feature-slider .cycle-pager { display: none; }

    Note: If you just want to add single image, then you can disable that slider and then use Header image instead.

    in reply to: Move a sidebar widget to above content in mobile view #67094
    Sakin
    Keymaster

    @Paul: Ok for that you can go to “Appearance => Widgets” and add that translation widget to “Header Right Sidebar”.

    in reply to: Add website made from wordpress into social menu #67093
    Sakin
    Keymaster

    @Pia: Those social icons are from http://genericons.com/. So, if there is any icon from there then I can help you to add in. So, can you post in your site URL and explain your issue.

    in reply to: Title and H1 – which to remove/how to remove? #67091
    Sakin
    Keymaster

    @219inc: But why are you adding in extra h1. The page tile is already in h1 tag. So, no need to add in. I suggest you to remove that extra h1 tag from your page. Just edit your page and remove extra title in your content and keep the title.

    in reply to: Logo Position #67082
    Sakin
    Keymaster

    @Johannes: You can try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #masthead .site-logo {
        float: left;
        width: 16%;
    }
    #masthead .site-title,
    #masthead .site-description {
        clear: none;
        float: right;
        width: 84%;
    }
    in reply to: Will upgrading change current free configuration? #67077
    Sakin
    Keymaster

    @Robert: No Problem. Great you found it 🙂

    in reply to: Update theme #67057
    Sakin
    Keymaster

    @jissel: It must be cache issue. So, when you make changes you need to go to Wp Super Cache Settings and clear your cache.

    in reply to: Will upgrading change current free configuration? #67055
    Sakin
    Keymaster

    @Robert: No, you don’t have to start from scratch. Catch Responsive Pro theme is an advance version of Catch Responsive Free theme with additional features listed in theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/

    You don’t have to do re-settings much, but yes you need to configure additional features. You can check this screencast at http://devotepress.com/wordpress-writing-editing/upgrade-premium-version-wordpress-themes-eg-adventurous-pro/ which explains the process.

    in reply to: divided into five areas menu #67054
    Sakin
    Keymaster

    @rvtent: I see, you only have 4 menu items, so you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #branding ul.menu li {
        -webkit-box-sizing: border-box;
        -moz-box-sizing:    border-box;
        box-sizing: border-box;
        text-align: center;
        width: 25%;
    }
    in reply to: divided into five areas menu #67043
    Sakin
    Keymaster

    @rvtent: Sorry but you are not using our menu or default WordPress menu. I see that you are using “widgetized-nav” which control the width. Have you added it from plugin? If so then you need to ask in that plugin support. I can only answer it, if you were using default theme menu.

    in reply to: Still waiting for an answer #67039
    Sakin
    Keymaster

    oh you mean cache plugin. I recommend W3 Total Cache or WP Rocket Plugin.

Viewing 20 posts - 2,221 through 2,240 (of 14,492 total)