Forum Replies Created

Viewing 20 posts - 3,821 through 3,840 (of 14,504 total)
  • Author
    Posts
  • in reply to: Simple Catch Pro – Full Width Template #57387
    Sakin
    Keymaster

    Hello Lisa,

    Thanks a lot for understanding our issue here in Nepal. Yes, I will let you know if we need any help. For now are are managing it and also helping our community.

    Regards,
    Sakin

    in reply to: Problem adding CSS on a per widget basis in sidebar #57386
    Sakin
    Keymaster

    @robertjm: You can add the following css:

    .widget a:hover,
    .widget a:focus,
    .widget a:active {
    	text-decoration: none;
    }
    in reply to: Remove Permalink To #57385
    Sakin
    Keymaster

    @Sheila: Here is link to post new question in Catch Responsive Pro theme http://catchthemes.com/support-forum/forum/catch-responsive-pro-premium/. Just go to that page and you will see 25 latest questions and at the bottom you will see form which you can fill in to post new question.

    I see that you have page title “Home” that is http://www.claudiaroseseries.com/SheilaLoweBooks/home-2/. If you don’t want this page, then do to “Pages” and delete that page.

    Then edit your menu from “Appearance => Menu” and remove that home menu and add new home like this https://www.pinterest.com/pin/548594798331207092/

    in reply to: Increase body width/decrease sidebar width #57384
    Sakin
    Keymaster

    @bennyvaldes: Your title is scrunched up together as there is css loaded from your google font plugin, which uses h1 letter-spacing as -5px. See the css:

    h1 {
        font-family: "Roboto";
        font-style: normal;
        font-weight: 100;
        letter-spacing: -5px;
    }

    So, either you need to rectify that from your google font plugin css or add in the following css in “Appearance => Theme Options => Custom CSS” box:

    #site-title {
        letter-spacing: 0;
    }

    If you want to increase the width of the site then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    div.layout-978,
    #mainmenu,
    #featured-slider,
    #featured-slider .slides,
    #featured-slider .featured {
        width: 1170px;
    }
    .featured img {
        width: 100%;
    }
    #main #content {
        width: 740px;
    }
    #content .col5 {
        width: 480px;
    }
    #main .sidebar {
        width: 400px;
    }
    #footer .powered-by {
        float: right;
    }
    in reply to: Navigation Bar Inquiries #57378
    Sakin
    Keymaster

    @kopernik: If you don’t want that whole header then you can hide it by adding in the following css
    #masthead { display: none; }

    in reply to: Create Theme #57377
    Sakin
    Keymaster

    @Tlhdesigns: Find the following css in your Custom CSS
    .main-navigation a:hover{color:#cab79a; }

    Then replace with the following:

    .main-navigation a:hover,
    .main-navigation .current_page_item > a, 
    .main-navigation .current-menu-item > a, 
    .main-navigation .current_page_ancestor > a {
        color:#cab79a;
    }

    Hum, we are not experience this issue. We have been using default WordPress custom menu. Did you went to “Appearance => Menus” and add in pages. Maybe there is plugin conflict. try disabling plugin one by one and check in.

    in reply to: override files in "inc" folder #57376
    Sakin
    Keymaster

    @danielski:
    1. For breadcrumb, both the function that you will find in catchbase-breadcrumb.php is child theme ready. So, just copy those function in your child theme functions.php file and edit it.
    2. Yes, that image size is defined in catchbase-core.php file. To change that, just copy whole function catchbase_setup() to your child theme functions.php file and edit it. After you change the image size, don’t forget to regenerate the thumbnail using Regenerate Thumbnail plugin.

    in reply to: Remove dark box on menu home page #57375
    Sakin
    Keymaster

    @amyfanton: We are in state of emergency due to massive earthquake in Nepal and it’s after shocks. So, I have not been able to reply fast. I just replied your there. Please expect delay reply in this hard time of ours.

    in reply to: Make footer smaller, add an image to home page #57374
    Sakin
    Keymaster

    @amyfanton: If you cannot find that in Custom CSS then you might want to check your color code in “Appearance => Theme Options => Color Options => Menu Hover & Active Background Color”.

    in reply to: Blog page set up #57373
    Sakin
    Keymaster

    @lorencowka: We have no control on WordPress hack. Our theme is coded in strict guideline with proper data validation and sanitization. So, it’s guarantee that it’s not from us. In last 2 weeks there are security update for WordPress core. I hope you have updated it. To keep your site safe, you need to keep your WordPress core and plugin all to latest version. Check this notice from WordPress https://wordpress.org/news/2015/05/wordpress-4-2-2/

    in reply to: Few questions #57372
    Sakin
    Keymaster

    @drswapnilparve:
    1. For this, go to your Custom CSS and find the following css
    .page .entry-header { display: none; }
    replace this with the following css:
    .home .entry-header { display: none; }

    2. The image spacing, can you let me know what you want to do. It looks fine to me.

    Note: Sorry for the late reply as we are still in state of emergency due to massive earthquake in Nepal.

    in reply to: Please Donate to Catch Themes after Nepal Earthquake #57371
    Sakin
    Keymaster

    @Consciousness: Thanks for all your support. We truly appreciate you and all the countries and community helping us. I never imagined this level of disaster but at the same time we are lucky to have support from all over the world.

    in reply to: Best way to Donate to Catch Themes? #57370
    Sakin
    Keymaster

    @Consciousness: Thanks a lot. You are great 🙂

    in reply to: New menu items automatically added #57369
    Sakin
    Keymaster

    @robertjm: Thanks for sharing how you ran into problem and also how did you fixed it. I am sure other people will be benefit from your question and answer here.

    in reply to: Wrong picture sharing to Facebook #57367
    Sakin
    Keymaster

    @EirikurVa: It’s open graph issue where theme doesn’t define anything and it falls under plugin territory. We recommend you to use WordPress SEO by Yoast plugin, which adds in Open Graph and also help in SEO.
    After that you need to clear your cache and then test in your site with https://developers.facebook.com/tools/debug/

    in reply to: Gridalicious Questions #57366
    Sakin
    Keymaster

    @designbym:
    1. Did you mean to add phone number under social icon in header right section. For this the easier way is to upgrade to Gridalicious Pro theme where you will get Header Right Sidebar and you can add social widget and text widget in there. But to do in Free version, you need to know little bit technical. So, first you need to build child theme and then copy gridalicious_header_right() function to your child theme functions.php file and then add it. For child theme, please refer to http://catchthemes.com/blog/create-child-theme-wordpress/
    2. Sorry I don’t understand this question. Can you explain in reference to your site URL.
    3. Yes, you can change that. Just go to “Appearance => Widgets” from your WordPress Dashboard and then drag and drop your necessary widget to Primary Sidebar.
    4. For this, please share your site URL so that I can check in. Make sure your image size for that Featured Grid content is at least 800px width and 450px height.
    5. Sorry, I don’t understand this question as well. We don’t have any default projects type in WordPress. WordPress only uses, post, pages, category and tags. Do you mean that you create post and add them in Projects category.
    6. This option is again there only in Gridalicious pro theme where you can add/edit footer text from “Appearance => Customize => Theme Options => Footer Editor Options”. In Free version to add text you need to build child theme edit gridalicious_footer_content() functions in your child theme functions.php file.

    For more info about additional featured in Pro version, you can refer to pro version theme instructions page at http://catchthemes.com/theme-instructions/gridalicious-pro/

    Thanks for your appreciation and I will try to help you as much as I can.

    in reply to: Mobile #57365
    Sakin
    Keymaster

    @Kim: It’s wide enough and I cannot see place to expand it. Also the 2 images that you have share looks same. I am bit confused.

    in reply to: Change nav menu font colour #57344
    Sakin
    Keymaster

    @canehoyer: We only have shadow in mobile menu on hover. If you want to remove that then you can add the following css:

    .sidr ul li:hover>a, 
    .sidr ul li:hover>span, 
    .sidr ul li.active>a, 
    .sidr ul li.active>span, 
    .sidr ul li.sidr-class-active>a, 
    .sidr ul li.sidr-class-active>span {
    	box-shadow: none;
    }
    in reply to: Second Language in Featured Slider #57341
    Sakin
    Keymaster

    @Roberto: Not sure about that. It working fine with WPML and Polylang through string translation where we have wpml-config.xml file. So, you can ask in plugin support forum.

    in reply to: Problem adding CSS on a per widget basis in sidebar #57303
    Sakin
    Keymaster

    @robertjm : You css should be as below:

    #secondary a.no-dec {
    color: #7FFF00;
    text-decoration: none;
    }
Viewing 20 posts - 3,821 through 3,840 (of 14,504 total)