Forum Replies Created

Viewing 20 posts - 4,121 through 4,140 (of 14,494 total)
  • Author
    Posts
  • in reply to: Responsive not working #55895
    Sakin
    Keymaster

    @Dona: Can you let me know what is the issue with the 2 different type of CSS I gave you. Do you have any specific design on this.

    in reply to: frame of widget fully visible in responsive #55852
    Sakin
    Keymaster

    @emree025: try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 320px) {
        #main, #supplementary { padding: 10px 10px 0; }
    }
    in reply to: Excerpt Lengths #55850
    Sakin
    Keymaster

    @rickm813: Can you first update to latest version and then let me know it. It’s bit confusing.

    in reply to: Adding a Logo and Adjusting Padding #55848
    Sakin
    Keymaster

    @moultrup: Thanks 🙂

    in reply to: Featured/Thumbnail Image and layout #55847
    Sakin
    Keymaster

    @Thomas: It will be cropped. But if you have just change the theme then it will not crop for old image. For old image you need to regenerate thumbnails using regenerate thumbnail plugin which we have mentioned in theme instructions page at http://catchthemes.com/theme-instructions/catch-responsive-pro/.

    I don’t get it why you ask, Is the featured and Thumbnail image the same?. Thumbnail are generated automatically by WordPress. Featured image is the image that you have added in featured in your page/post. Also WordPress has it’s own thumbnail size of image which you can see at Settings => Media. Catch Responsive Pro theme uses 4 different type of images for different places.

    in reply to: no sidebar Fullwidth #55845
    Sakin
    Keymaster

    @Alex GR: Yes, for that you need to upgrade to pro. In free version you can select No Sidebar layout and then add the following css in “Appearance => Theme Options => Custom CSS” box:

    .no-sidebar #primary { width: 100%; }

    in reply to: Social Icons' Color #55844
    Sakin
    Keymaster

    @tutyga: thanks for your appreciation and if you like Adventurous theme and my support then please support Adventurous theme by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/adventurous?rate=5#postform. Thanks 🙂

    in reply to: Responsive not working #55843
    Sakin
    Keymaster

    @Dona: I already gave you the way to add background in particular page content. For more you might need to hire developer.

    in reply to: HTML stripped from Excerpt on Homepage #55842
    Sakin
    Keymaster

    @sezg: By default WordPress strip out all the formatting when you use excerpt. So, just go to “Appearance => Theme Options => Content layout” and select “Show full content”. This will display you post full content with format. But then if you wan to only few lines then you can split content using more tag <!--more-->. Just edit your post and add more tag and all the text before more tag will show in homepage. For more about more tag check this http://devotepress.com/wordpress-writing-editing/how-to-split-content-using-the-more-tag-option/#.VS6R1Rd40ys

    in reply to: header image #55840
    Sakin
    Keymaster

    @kazcchi: Sorry this option is there only in pro version. In free version, you need to build child theme and modify the code. You need to copy function catchevolution_featured_header() in your child theme functions.php file and then add in !is_front_page() condition and return false.

    in reply to: Dissable link to article in the Feature Slider #55839
    Sakin
    Keymaster

    @Robert: You can stretch as well. Send me your site URL and then I will send you custom css.

    in reply to: Changing default font size? #55838
    Sakin
    Keymaster

    @Michael: Let me know the size you want and also let me know if this will be for all devices or just for large screens.

    You can change the default 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;
    }
    Sakin
    Keymaster

    @Michael: Your css should be as below:

    #branding #access,
    #colophon #access-footer,
    #branding ul.menu ul a {
    	background: -moz-linear-gradient(#3d3d3d, #000000);
    	background: -o-linear-gradient(#3d3d3d, #000000);
    	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#3d3d3d), to(#000000)); /* older webkit syntax */
    	background: -webkit-linear-gradient(#3d3d3d, #000000);
    }
    in reply to: Swap Promotion headline with Featured Grid content #55836
    Sakin
    Keymaster

    @Emmelie Brownlee: That cannot be done with custom css. For that you need to build child theme and change the hook position. You can download sample child theme from http://catchthemes.com/blog/create-child-theme-wordpress/

    Then you need to unhook the promotion headline and add it before grid content. For example, you can add the following code in your child theme functions.php file.

    // Unhook default gridalicious functions, removing promotion headline
    function unhook_gridalicious_functions() {
        remove_action( 'gridalicious_before_content', 'gridalicious_promotion_headline', 30 );
    }
    add_action('init','unhook_thematic_functions');
    
    // Adding promotion headline in top of Grid content 
    add_action( 'gridalicious_before_content', 'gridalicious_promotion_headline', 5 );
    in reply to: Photo order on posts #55835
    Sakin
    Keymaster

    @Kris: If you want to add image in group then you need to create it gallery and add in. See this https://codex.wordpress.org/The_WordPress_Gallery

    in reply to: Menu color #55832
    Sakin
    Keymaster

    @roderick: Are you using default page menu or you have build custom menu from “Appearance => Menus” and then assign that menu as Primary menu from “Appearance => Menus => Manage Locations”.

    It’s know issue that this color option will not work in default page menu. We will fix this in new version update. So, for now you can build custom menu http://catchthemes.com/blog/videos-blog/video-series-creating-wordpress-custom-menus/

    in reply to: frame of widget fully visible in responsive #55831
    Sakin
    Keymaster

    @emree025: Sorry I don’t get it what you mean. Your site is working fine in mobile devices.

    in reply to: Menus disappear on mobile devices #55829
    Sakin
    Keymaster

    @Lloyd: First you have disable responsive design from Theme Options panel. Also I see that you have modified theme. Like you have removed footer completely. So, can you let me know your customization. You can see menu work fine in our theme demo page at http://catchthemes.com/demo/catchbox-pro/

    in reply to: Header additional picture move position #55828
    Sakin
    Keymaster

    @kalatos:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #header .layout-978 {
        position: relative;
    }
    #headimg {
        clear: none;
        display: inline-block;
        float: right;
        margin-top: 0;
        position: absolute;
        right: 0;
        top: 55px;
        width: auto;
    }
    #headimg img {
        width: auto;
    }

    2. That gap cannot be removed. You can center the menu. Try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #header #mainmenu ul li {
        border: none;
        display: inline-block;
        float: none;
        height: 40px;
    }
    in reply to: Catch Kathmandu & Simple Map – Javascript error #55826
    Sakin
    Keymaster

    @Shiloh: We need to look at this in more details. For now, you can remove your custom social icons to check is this is issue or not. As when you remove your custom social icon it will remove grey js.

Viewing 20 posts - 4,121 through 4,140 (of 14,494 total)