Forum Replies Created

Viewing 20 posts - 4,981 through 5,000 (of 14,504 total)
  • Author
    Posts
  • in reply to: Responsive.css not active in child theme #51694
    Sakin
    Keymaster

    @Ronel: Yes you are right ๐Ÿ™‚

    in reply to: Responsive.css not active in child theme #51692
    Sakin
    Keymaster

    @Ronel: Best option is to copy the whole css from parent theme responsive.css and then add your custom below. As the code I gave you will remove the parent theme responsive.css and then add your child theme responsive.css

    But if you want to create new responsive.css in your child theme with only few css that you want to edit. Then you don’t need to remove parent theme css. You just need to add your child theme responsive.css by adding in the following code in your child theme functions.php file.

    // dding new responsive.css in child theme 
    function adventurous_child_enqueue_scripts() {
        wp_enqueue_style( 'adventurous-child-responsive', get_stylesheet_directory_uri() . '/responsive.css' );
    }
    add_action( 'wp_enqueue_scripts', 'adventurous_child_enqueue_scripts', 11 );
    in reply to: Featured Post in place of Featured Content #51691
    Sakin
    Keymaster

    @emlawag: Sorry no option to add that. You can just add custom content. But not the posts. This features has not been added yet.

    in reply to: remove padding between social icons #51690
    Sakin
    Keymaster

    @shaun.smudger.smith: You can adjust the padding and margin as per your need in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    #header-right { padding-top: 50px; }
    #header-right .widget.widget_catcheverest_social_widget {
        margin-bottom: 10px;
    }
    in reply to: Header text #51688
    Sakin
    Keymaster

    @teddiebozh: thanks for your appreciation ๐Ÿ™‚

    in reply to: Responsive format of buttons #51687
    Sakin
    Keymaster

    @Ronel: From which browser in mobile you are checking in . Are you checking in Safari. Sorry it cannot be done simply with css as it’s default for input type submit in mobile devices.

    but you can remove that for original bottom by adding in the following css:

    input[type=submit] {
      -webkit-appearance: none;
      -webkit-border-radius: 0;
    }
    in reply to: Centring selected Gallery images. #51684
    Sakin
    Keymaster

    @Joseph: Sorry we have no control on this. This is default gallery from WordPress.

    You can add the following css to make it center:

    .attachment .entry-attachment {
        text-align: center;
    }
    .attachment .entry-attachment a {
        display: inline-block;
        margin: 0 auto;
    }

    That number below the gallery is the Caption in theme image. If you don’t want that then edit that image and remove the caption.

    To remove date from attachment, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    .attachment .entry-meta { display: none; }

    But to remove the link to full image, you cannot do that from Custom CSS. For this you need to build child theme. Check this http://catchthemes.com/blog/create-child-theme-wordpress/ for child theme. The copy image.php in yoru child theme and edit that link.

    in reply to: Text color of header #51681
    Sakin
    Keymaster
    in reply to: Opacity on Slider #51680
    Sakin
    Keymaster

    @luismarioochoa:
    1. If you want to hide Continue Reading… from your slider then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #slider-wrap a.more-link { display: none; }

    2. You cannot just add Ubuntu font family. As Ubuntu is a google font and you need to load that font first. So, just go to “Appearance => Theme Options => Font Family Options”, then select Ubuntu font. Maybe you can select for Headings Font Family. Then only you can add css as:
    #slider-wrap .featured-text { font-family: 'Ubuntu', sans-serif; }

    3. I don’t get it what you mean. If you want to remove the excerpt from the slider then you need to remove the following css from custom css box:
    #slider .slider-excerpt { clear: both; display: inline-block; }

    in reply to: 2 Menus Showing #51679
    Sakin
    Keymaster

    @bigoslesli: Yes we have donation page at http://catchthemes.com/donate. We use this donation fund for developing free version and free support.

    It will be great if you support Catch Kathmandu theme by providing your review and rating at https://wordpress.org/support/view/theme-reviews/catch-kathmandu/. Thanks a lot ๐Ÿ™‚

    in reply to: Menu on Mobile Devices Not Showing #51677
    Sakin
    Keymaster

    @dfwrgjeff: You can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    #header-right .widget a { color: #757575; }

    in reply to: 2 Menus Showing #51676
    Sakin
    Keymaster

    @bigoslesli: Thanks for your appreciation.

    in reply to: Blank Featured Slider # #51674
    Sakin
    Keymaster

    @4iMEDIA: It should work fine. Which version are you suing it. Ok I will email you to check your server.

    in reply to: header #51673
    Sakin
    Keymaster

    @level7tech: To change the header color you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #branding {
        background-color: #000;
        color: #ddd;
    }
    #site-title a {
        color: #ddd;
    }

    But if you wan your header image to stretch 100% then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header-image img { 
        width: 100%; 
    }
    in reply to: Header – Left Sidebar Widget #51672
    Sakin
    Keymaster

    @Lisa: cool ๐Ÿ™‚

    in reply to: Adjust location of items in header #51671
    Sakin
    Keymaster

    @Cricket: Thanks for your appreciation ๐Ÿ™‚

    in reply to: Center the logo #51669
    Sakin
    Keymaster

    @Young: hum for that can you try adding in the following css:

    #masthead .wrapper {
        position: relative;
    }
    .sidebar-header-right {
        position: absolute;
        right: 0;
        top: 0;
    }
    in reply to: 2 Menus Showing #51668
    Sakin
    Keymaster

    @bigoslesli: When you add in Custom Color from “Appearance => Header”. It creates color as important in both site title and description. That is why it’s not working. Can you try adding in the following css instead:

    #masthead #site-description { color: #d3bf81 !important; }

    in reply to: Make the author link on meta go to buddypress profile #51663
    Sakin
    Keymaster

    @MasterManiacs: You will find author link in various places. The main one that you need to customize in your child theme is function catchbox_posted_on(). You can just copy this function to your child theme functions.php file and edit it. You will find this function in catch-box-pro/inc/catchbox-fucntions.php file.

    Next you can change in file such as

    content-single.php
    content-status.php
    content-image.php
    author.php
    in reply to: Title & Menubar outside of body – Kathmandu #51662
    Sakin
    Keymaster

    @dawfx: Sorry I don’t get it what you mean. Can you send me your site URL and let me know the color that you want to change to. Also if you can upload screenshot in your site or any file sharing like dropbox and paste your screenshot url here. So, that I can understand better.

Viewing 20 posts - 4,981 through 5,000 (of 14,504 total)