Forum Replies Created

Viewing 20 posts - 3,801 through 3,820 (of 14,498 total)
  • Author
    Posts
  • Sakin
    Keymaster

    @Jürgen: Thanks for sharing info about this plugin conflict.

    Sakin
    Keymaster

    @Wayne: Sidebar is there in that post as well. But it has empty “Text Widget”. So, you have that color box at the right of your content. So, check your sidebar for empty Text widget. Go to “Appearance => Widget” and see if you have anything is “Optional Post Sidebar”, as this sidebar will replace your primary sidebar in post if you have any active widget there.

    in reply to: Few questions #57440
    Sakin
    Keymaster

    @drswapnilparve: Thanks for understanding our situation here in Nepal. Yes, for screenshot we don’t have upload option. So, you need to upload your screenshot in your site or any photo sharing site and then add in URL here.

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

    @robertjm: Yes that custom css should work. Maybe your other css is not correct in Custom CSS box. So, can you add that CSS at the top of your Custom CSS box, before any other css.

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

    @lorencowka: Most of the WordPress Hosting server have auto backup these days. So, first ask to your hosting server about backup.

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

    @bennyvaldes: Sorry for that and thanks for your appreciation. Can you find the following css that I gave you earlier:

    div.layout-978,
    #mainmenu,
    #featured-slider,
    #featured-slider .slides,
    #featured-slider .featured {
        width: 1170px;
    }

    Just replace above block of css with the following css:

    div.layout-978,
    #header #mainmenu,
    .featured-slider,
    .featured-slider .slides,
    .featured-slider .featured {
        width: 1170px;
    }
    in reply to: Please Donate to Catch Themes after Nepal Earthquake #57435
    Sakin
    Keymaster

    @Laura Pio: Thanks for thing about me and your support. I am so happy to read it. It really feels nice when you receive just message, email and call from Catch Themes users and family. Now, I feel so much connect to all. I am so happy that everyone is support my beautiful country Nepal.

    I have no words, how thankful I am towards all the communities and countries helping us.

    Thanks again.

    Greetings from Nepal

    in reply to: How to write title on the top of the images? #57434
    Sakin
    Keymaster

    @Amanda Barbosa: Ok can you post in your site URL so that I can check in. I need to check your layout and images for this and then only I will know if this is possible or not. As this option in not there.

    in reply to: How to show featured content as latest posts #57432
    Sakin
    Keymaster

    @dptashny: Sorry, this option is there only in Pro version where you can select wither “Featured Post Content” and then add in Post ID or you can select “Featured Category Content” to show latest posts. For free version, you need to build child theme and do the custom coding.

    For more about additional information there in Pro version, you can check out theme instructions page at http://catchthemes.com/theme-instructions/catch-base-pro/

    in reply to: custom image sizes possible? #57431
    Sakin
    Keymaster

    @Kathy: I am bit confused. Are you talking about custom image that you are trying to insert in your page/post? Then for that WordPress uses the Thumbnail, Medium and Large Size get in “Media => Settings”. So, just change that sizes and Regenerate the thumbnail using Regenerate Thumbnail plugin.

    in reply to: Background text is on. Wish to make it transparent #57426
    Sakin
    Keymaster

    @vimal: I agree with @bigoslesli, Adding background transparent will make your user difficult to read. But if you really want ti then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .site {
        background-color: #fff;  /* Show a solid color for older browsers */
        background-color: rgba(255, 255, 255, 0.6);
    }
    in reply to: Font sizes #57390
    Sakin
    Keymaster

    @Vivien: We don’t have font size option in theme options panel. So, you need to change it by adding custom css.

    So, change the font size in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    body, button, input, select, textarea, #header-right .widget .menu li {
        font-size: 14px;
    }
    in reply to: Read More #57389
    Sakin
    Keymaster

    @Kim: It’s because, in your homepage, you have Full Content display mode, where you control read more text by adding more tag <!--more--> in your post. But your archive pages has “Excerpt Layout”. Which will check your text before more tag with Excerpt Word Count set in “Appearance => Theme Options => Excerpt / More Tag Settings”. So, if the Word Count in more then your post text before more tag <!--more--> then it will not display Read More. It will only display read more if the Word Count is less then your post text before more tag. So, either shift your more tag in your posts or change the “Excerpt length(words)” in “Appearance => Theme Options => Excerpt / More Tag Settings”

    Sakin
    Keymaster

    @Wayne: I check in your site and every page has “Sidebar”. So, I am bit confused. Yes that layout option should work fine.

    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.

Viewing 20 posts - 3,801 through 3,820 (of 14,498 total)