Forum Replies Created

Viewing 20 posts - 2,981 through 3,000 (of 14,501 total)
  • Author
    Posts
  • in reply to: Related Products WooCommerce #61325
    Sakin
    Keymaster

    @Cattext: Cool that you found solution by yourself. Ok I have closed it for you.

    in reply to: Hide picture in feature page for slider #61324
    Sakin
    Keymaster

    @jeremiah.j: Sorry for the late reply due to power outage. I am happy that you found solution by yourself. Cheers 🙂

    in reply to: Images in content page area – slider? #61323
    Sakin
    Keymaster

    @Dolomie: Sorry your question is bit confusing. Do you mean that you want your slider to show in entire site. If so then you can go to “Appearance => Customize => Featured Slider => Featured Slider Options” and in “Enable Slider on”, you need to select “Entire Site”

    in reply to: Adding a map to a static page #61322
    Sakin
    Keymaster

    @RevCT: No problem. You can just add embed code in your page. See this screenshot https://www.pinterest.com/pin/548594798332210926/

    in reply to: Semi Transparent Backgrounds for Content #61320
    Sakin
    Keymaster

    @Gregory: You can add the semi transparent background color using rbga color code as following css. You can see, rgba color 255, 255, 255 is white and 0.6 is 60% transparent. So, change the color code and transparent as per your need and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #featured-content {
        background: #fff; /* Solid Color For Old Browser */
        background: rgba(255, 255, 255, 0.6); /* 60 percent transparent background color */
    }
    in reply to: Single Page Background Colour #61319
    Sakin
    Keymaster

    @dancingblu: It’s because you have added in your own background from custom background and it’s overwriting your css. To make that, you can add the following css instead:

    body.custom-background.page-id-499 {
        background-color: #222930;
    }
    in reply to: Dynamic Second-Menu? #61308
    Sakin
    Keymaster

    @Karl: Catch Responsive Pro used core WordPress Custom Menus so we don’t have extra control. You can create your custom menu from “Appearance => Menus” then assign location from “Appearance => Customize => Menus”.

    You can read more abut Custom menu at http://catchthemes.com/blog/custom-menus-wordpress-themes/

    in reply to: Limit of max size of uploaded images #61300
    Sakin
    Keymaster

    @Vitaliy: Thanks for the update. Yes, this issue is totally a server configuration. It’s great that you were able to make changes in your php.ini file in your server. So, any other who doesn’t know how to edit that file. You can always ask your Website Hosting Server support to increase the upload limit.

    in reply to: Blank page opens when clicking the email link #61297
    Sakin
    Keymaster

    @Cattext: For Adventurous free theme, you need to post in http://catchthemes.com/support-forum/forum/adventurous-free/ . So, from next time please post in proper theme support forum

    So, to remove open in a blank page. You need to build child theme and then copy adventurous_social_networks() function to your child theme functions.php file and then remove target="_blank" from that function.

    in reply to: Reg. posts in the widget that shwos newest posts #61272
    Sakin
    Keymaster

    @knudkp: Sorry there is no option to do that. That recent posts widget is from WordPress core. Maybe you can to try adding in Custom Menu with the selection of your posts. So, it just display that.

    in reply to: Bullet point issue #61271
    Sakin
    Keymaster

    @Michaela: Sorry for late reply as I was out of internet for 2 days.

    Here you can see in demo the design of ordered and unordered list: http://catchthemes.com/demo/catch-kathmandu/2013/01/11/markup-html-tags-and-formatting/

    But if you want to change, then you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .entry-content ul  {
        list-style: inside none disc;
    }
    .entry-content ul li {
        margin-left: 0;
    }
    .entry-content ul  ul {
        list-style: inside none circle;
    }
    .entry-content ul ul li {
        margin-left: 36px;
    }
    Sakin
    Keymaster

    @fcexclusive: No I haven’t received it. I will email you and you can send me details there.

    in reply to: Changing the width of Content and Sidebar #61268
    Sakin
    Keymaster

    @Yuna: Child theme style.css and custom css are different. Custom CSS are given more priority then responsive.css and child theme style.css. Where as child theme style.css is less priority then responsive.css. So, CSS that work in Custom CSS might not work in child theme style.css

    So, it depends what css are you changing. If you are changing responsive css then you need to be careful about it.

    You can always ask me the css that you wanted to add in your child theme style.css which is not working.

    Sakin
    Keymaster

    @fcexclusive: Hum it’s strange. Can you go to W3 Total Cache settings and clear your cache and also check in your have any other cache.

    in reply to: social Icon #61262
    Sakin
    Keymaster

    @alexch: You can change the color code in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    .site .widget_catchresponsive_social_icons a.genericon {
        background-color: #d7d7d7;
        border-color: #b6b6b6;
    }
    in reply to: Main Nav Font Size #61179
    Sakin
    Keymaster

    @Kim: Oh for menu font size, then you need to change and add the following css instead.

    #header-menu ul.menu a, 
    #footer-menu ul.menu a {
        font-size: 14px;
        line-height: 3.5em;
    }
    in reply to: Is there an about me widget or bio widget? #61177
    Sakin
    Keymaster

    @Amanda: You can add the widget to your Sidebar from “Appearance => Widgets”. If you know HTML Codes then you can use “Adspace Widget”. Next, you can find about widget plugin like https://wordpress.org/plugins/aboutme-widget/. OR search for plugin in WordPress at http://wordpress.org/plugins/

    in reply to: Changing the width of Content and Sidebar #61141
    Sakin
    Keymaster

    @skendall:
    1. For space between text, you can adjust the margin bottom in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:
    p { margin-bottom: 30px; }

    2. For the content width 100%, you can add the following css in Custom CSS box:
    .container { width: 100%; }

    in reply to: Featured Image/Slideshow #61134
    Sakin
    Keymaster

    @oleymedia: Yes, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #header-image img,
    #main-slider img {
        width: 100%;
    }
    in reply to: Color options for "dark" theme #61133
    Sakin
    Keymaster

    @ginabrasseur: Don’t worry. Just change the color of the items that you need need and leave the rest unchanged.

    If anything is not working then post in your site URL and let me know the color code and items that you need to change.

Viewing 20 posts - 2,981 through 3,000 (of 14,501 total)