Forum Replies Created

Viewing 20 posts - 4,841 through 4,860 (of 14,509 total)
  • Author
    Posts
  • in reply to: move social icons #52317
    Sakin
    Keymaster

    @shaun.smudger.smith:
    1. You can created fix header menu. Just create custom menu from “Appearance => Menus” and then assign that menu location as “Fixed Header Top Menu” from “Appearance => Menus => Manage Locations”
    2. About the social icon. I see that you have added in Large Header Image and not the site logo. So, it cannot be added like that. If you have added header image from “Appearance => Theme Options => Header Options” then you can add Catch Evolution Social Widget in Header Right Sidebar from “Appearance => Widgets”

    in reply to: Remove Title and Excerpt on Featured Slider #52315
    Sakin
    Keymaster

    @Cameila: Each theme has it’s own code so, you cannot use Catch Everest theme code in Catch Base Theme. Please see that you are posting it in Catch Everest Forum. For Catch Base Forum, check out http://catchthemes.com/support-forum/forum/catch-base-free/. You can post your own question by filling out the form below that link.

    in reply to: Add new fonts #52313
    Sakin
    Keymaster

    @Keith: I see that you have change your Font Family for Site Title and Site Tagline from “Appearance => Theme Options => Font Family Options”

    You can check “Reset Fonts” and save changes. This will make it default and you plugin font will work.

    in reply to: Catch Evolution Theme Translation #52312
    Sakin
    Keymaster

    @Kim: Yes you can email me the .mo and .po files.

    in reply to: Title hover Featured content widget #52311
    Sakin
    Keymaster

    @Steffen: Just add following css in “Appearance => Theme Options => Custom CSS” box:
    .widget-area .widget .widget-title a { color: #fff; }

    in reply to: removing space on top menu left side #52310
    Sakin
    Keymaster

    @srp7: It always depend on the menu text so cannot done 100%.

    in reply to: Mobile menus #52307
    Sakin
    Keymaster

    @Cybersnaby: Please post in your site URL so that I can check in.

    in reply to: Align title in main text and sidebar #52306
    Sakin
    Keymaster

    @Sam: Yes that fine.

    It’s from the widget and not from the theme. So, for example:
    1. Your recent post widget where you have added title as New will be have class .widget_recent_entries
    2. Your subscription widget added from Jetpack plugin will have class .jetpack_subscription_widget

    in reply to: Slider featured text #52304
    Sakin
    Keymaster

    @Cyril:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #slider .slider-title { color: #aaa; font-weight: bold; }

    2. This cannot be done with custom css. So, you might want to build child theme and edit slider function. Hum, first let’s try new CSS3, where we will hide : and add -. Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    .featured-text-wrap .slider-title:after {
    background-color: #ddd;
    content: '';
    display: inline-block;
    margin-left: 10px;
    height: 1px;
    vertical-align: middle;
    width: 10px;
    }
    .featured-text-wrap .sep {
    display: none;
    }

    in reply to: post_format_meta function? #52297
    Sakin
    Keymaster

    @somethingelse: I am not sure what you are looking for. If you are looking for function adventurous_post_format_meta(), then you will find it in adventurous-template-tags.php file inside inc folder.

    in reply to: Padding around Post Photos #52295
    Sakin
    Keymaster

    @Kim: Thant is because of Image height and the text sentence. As you can see your sentence “Results in about a 48% increase in 20 days in natural elastin production to tighten your skin.” started from bottom of the image and float down.

    You can try adding in the following css:
    img.alignleft, .wp-caption.alignleft { margin-bottom: 0; }

    But it’s up to the paragraph of text start and end point.

    in reply to: continuous blank pages after every save #52264
    Sakin
    Keymaster

    @somethingelse: It’s ok to have problem and we try our best to provide you the solution.

    Also, please support Adventurous theme by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/adventurous/. We would really appreciate it. Thanks.

    in reply to: I need help with the background color on my web site #52243
    Sakin
    Keymaster

    @Anne-Pia: For that you need to translate the theme in Danish language. Then it will be auto changed to it. You need to create .mo and .po files. You can see the example language in ‘languages’ folder. Out theme is translation ready and you will see catch-flames.pot file in languages folder. So, you can just download poedit software from http://poedit.net/and create .mo and .po file.

    After you complete translation, you can contribute to theme and we will add in the core theme.

    in reply to: I need help with the background color on my web site #52241
    Sakin
    Keymaster

    @Anne-Pia: If you remove that older post link then how will your site visitor look for old posts.

    in reply to: How do I change default Image sizes in Blog listings? #52240
    Sakin
    Keymaster

    @Consciousness: If you don’t want to use import then you can add the following code in your child theme functions.php file.

    add_action( 'wp_enqueue_scripts', 'catchevolution_child_enqueue_styles' );
    function catchevolution_child_enqueue_styles() {
        wp_enqueue_style( 'catchevolution_parentstyle', get_template_directory_uri() . '/style.css' );
    }
    in reply to: Featured Slider shows Too Much Content #52238
    Sakin
    Keymaster

    @BigA2015: Thanks for your appreciation and please support Catch Kathmandu theme by providing your good review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu/

    in reply to: blog comments #52237
    Sakin
    Keymaster

    @photobyemelie: Can you send me your site URL so that I can check in.

    in reply to: I need help with the background color on my web site #52236
    Sakin
    Keymaster

    @Anne-Pia: You can change colors from “Appearance => Theme Options => Color Options => Content Color Option”

    in reply to: Remove Previous/Next post link #52228
    Sakin
    Keymaster

    @ADN: You cannot change that just from Custom CSS. For that you need to change the code. So, for this you need to build child theme http://catchthemes.com/blog/create-child-theme-wordpress/. Then copy catchkathmandu_content_nav() function from template-tags.php to your child theme functions.php file.

    Then you will see the following code:

    <?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'catchkathmandu' ) . '</span> %title' ); ?>
    <?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '&rarr;', 'Next post link', 'catchkathmandu' ) . '</span>' ); ?>

    You need to replace with following:

    <?php previous_post_link( '%link', '<div class="nav-previous">Previous</div>' ); ?>
    <?php next_post_link( '%link', '<div class="nav-next">Next</div>' ); ?>
    in reply to: move social icons #52227
    Sakin
    Keymaster

    @shaun.smudger.smith: Sorry your site is offline in maintenance mode. Also I don’t know what you meany by original place.

Viewing 20 posts - 4,841 through 4,860 (of 14,509 total)