Forum Replies Created

Viewing 20 posts - 4,861 through 4,880 (of 4,922 total)
  • Author
    Posts
  • in reply to: Background responsiveness #81611
    Mahesh
    Keymaster

    Hi @Daan,

    Please add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    @media screen and (max-width: 480px){
    	.site-branding {
    		min-height: 201px; /* Adjust as required */
    	}
    }

    Regards,
    Mahesh

    in reply to: Logo Size + Promotional Headline Text #81567
    Mahesh
    Keymaster

    Hi @Steve,

    For this, you have to create a child theme. You can find the details on how to create a child them HERE

    Then in child theme’s functions.php file add the following function.

    function adventurous_child_delete_promotional_cache() {
        delete_transient( 'adventurous_homepage_headline' );
    }
    
    add_action( 'after_setup_theme', 'adventurous_child_delete_promotional_cache' );

    Let me know if this solved your issue.

    Regards,
    Mahesh

    in reply to: bigger logo in the header #81565
    Mahesh
    Keymaster

    Hi @Danielle,

    Thank you for using Full Frame Pro.

    Please add the following CSS in “Dashboard=> Appearance=> Theme Options=> Custom CSS” box:

    #menu-hoofdmenu {
    	margin-top: 43px;
    	margin-left: 5px;
    }
    
    #header-toggle{
    	margin-top: 43px;
    }

    Regards,
    Mahesh

    in reply to: Logo Size + Promotional Headline Text #81561
    Mahesh
    Keymaster

    Hi @Steve,

    For changing font size of promotional headline, add the following Custom CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    
    /* Promotional headline font size */
    #homepage-message h2 {
        font-size: 23px; /* Change as required */
    }
    
    /* Promotional sub-headline font size */
    #homepage-message p {
        font-size: 12px; /* Change as required */
    }

    Regards,
    Mahesh

    in reply to: Background responsiveness #81560
    Mahesh
    Keymaster

    Hi @Daan,

    Please add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    @media screen and (min-width: 861px){
    	body.custom-background {
    		background-size: cover;
    	}
    }
    
    @media screen and (max-width: 860px){
    	body.custom-background {
    		background-size: contain;
    	}
    }

    Regards,
    Mahesh

    in reply to: Question before I buy pro #81558
    Mahesh
    Keymaster

    Hi @wjcofkc,

    The area between navigation and content is calculated dynamically with respect to different screen sizes. If you just want to reduce, you do not need to upgrade to Pro version, it can be achieved via Custom CSS. Add the following CSS in “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box:

    .site-branding {
        min-height: calc(50vh - 122px);
        position: relative;
    }

    Let me know if this solves your issue.

    Regards,
    Mahesh

    in reply to: RSS link? #81509
    Mahesh
    Keymaster

    HI @Keir,

    RSS feed is xml data. Firefox has a built-in feature to generate the markup RSS page from the xml code but chrome does not. So this is normal. Its working fine.

    Regards,
    Mahesh

    in reply to: How to remove breadcrumb action #81506
    Mahesh
    Keymaster

    Hi @oleymedia,

    The code you’ve used for adding and removing action is correct if you’re within theme territory, but for child theme you have to hook it into init. You can do it as follows:

    add_action( 'init' , 'catchresponsive_child_add_and_remove' , 15 );
    function catchresponsive_child_add_and_remove() {
            remove_action( 'catchresponsive_after_header', 'catchresponsive_add_breadcrumb', 50 );
    	add_action( 'catchresponsive_before_page_container', 'catchresponsive_add_breadcrumb', 20);
    }

    Also the remove_action() needs to have the same priority when it was added.

    Regards,
    Mahesh

    in reply to: Use sidebar for a variety of testimonials? #81505
    Mahesh
    Keymaster

    Hi @Shannon,

    For this purpose, you have to make a child theme. You can find detail on how to make child theme HERE.

    In child theme’s functions.php add the following codes.

    function catchresponsive_child_widgets_init() {
    	//Custom Sidebar One for page and post
    	register_sidebar( array(
    		'name' 				=> __( 'Custom Sidebar One', 'catch-responsive' ),
    		'id' 				=> 'custom-sidebar-one',
    		'description'		=> __( 'This is Custom Sidebar One', 'catch-responsive' ),
    		'before_widget' 	=> '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' 		=> "</aside>",
    		'before_title' 		=> '<h3 class="widget-title">',
    		'after_title' 		=> '</h3>'
    	) );
    
            register_sidebar( array(
    		'name' 				=> __( 'Custom Sidebar Two', 'catch-responsive' ),
    		'id' 				=> 'custom-sidebar-two',
    		'description'		=> __( 'This is Custom Sidebar Two', 'catch-responsive' ),
    		'before_widget' 	=> '<aside id="%1$s" class="widget %2$s">',
    		'after_widget' 		=> "</aside>",
    		'before_title' 		=> '<h3 class="widget-title">',
    		'after_title' 		=> '</h3>'
    	) );
    
            /* You can add as many widgets as you want to.*/
    }
    add_action( 'widgets_init', 'catchresponsive_child_widgets_init' );

    Copy the sidebar.php from Catch Responsive Pro to the child theme and add custom conditions after line 110 for displaying desired widget in the desired page.

    This is a bit tricky job, so I recommend you to hire a customizer.

    Regards,
    Mahesh

    Mahesh
    Keymaster

    Hi @Lucia,

    Thank you for using Catch Evolution Pro.

    “Customize” option is currently available only in free version, please use “Theme Options” instead. This feature will be available in next version update.
    Yes, your above changes can be achieved with Custom CSS.

    Go to “Appearance=> Theme Options=> Custom CSS” box and add the following CSS:

    #primary {
        width: 900px; /* Change as per required */
    }
    
    #secondary {
        width: 260px; /* Change as per required */
    }
    
    .widget {
        border: none;
    }

    Please make sure the sum of #primary and #secondary’s width is 1160px.

    Regards,
    Mahesh

    in reply to: RSS link? #81503
    Mahesh
    Keymaster

    Hi @Keir,

    You’ve put the blog link in RSS field, that is why its taking you to the same page. The RSS field should contain the RSS/FEED link not the regular blog page’s url.

    For catchthemes.com, we can use:
    RSS => http://www.catchthemes.com/rss

    This will take you to the RSS subscription page.

    Regards,
    Mahesh

    in reply to: RSS link? #81472
    Mahesh
    Keymaster

    Hi @Keir,

    I think you’re confused about the RSS field in the “Theme Options=> Social Links=> Predefined Social Icons”. All options here are just to link to the desired URL. Same with the RSS field too, it is not for the subscription. If you’ve put the blog url in RSS, and when clicked takes you to the exact same page, then its working fine. It is made for that very purpose. For example to be more clear:
    Field => Value ( What it does )
    Facebook => https://www.facebook.com/catchthemes ( Opens Catchtheme’s facebook )
    Twitter => https://www.twitter.com/catchthemes ( Opens Catchtheme’s twitter )

    Similarly,
    RSS => Some page’s url that displays RSS feeds. ( Opens the page with given url )

    Let me know if this helps you.

    Regards,
    Mahesh

    in reply to: Full width Template #81471
    Mahesh
    Keymaster

    Hi @Nestro,

    Full width template….. do you mean the full width layout option? We don not use templates. Catch Adaptive Free version includes 3 layout options:
    1. Primary Sidebar, Content
    2. Content, Primary Sidebar
    3. No Sidebar (Content Width)

    Another Layout option i.e.
    4. No Sidebar (Full Width) -> available only in Catch Adaptive Pro Version

    In either of the theme, no templates are used, layouts are controlled with body class not separate template files.

    I hope this clarifies you.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #81455
    Mahesh
    Keymaster

    Hi @rflores,

    I checked your site, you’ve currently used Simple Catch. Simple Catch and Simple Catch Pro are two independent themes and are installed as two separate themes. Are you sure that you’ve followed the instructions correctly as mentioned in the Theme Instructions

    Please try again and let me know if the problem persists. Please explain in brief the steps in installing theme and where actually do you get the error message.

    Regards,
    Mahesh

    in reply to: Background Image and Background Scroll #81452
    Mahesh
    Keymaster

    Hi @matthewseanmclachlan,

    There is no actual dimensions for the background image to use in the site. Small image is used and is repeated to cover the whole area and it looks like a single image covering the whole site’s background.

    For that, please remove the Custom CSS having background-color rule and add the following styles:

    body { 
        /* I have used used your logo for url for the idea */
        /* Please Replace The String inside url('') with your desired image url */
        background-image: url('http://www.trendfly.org/wp-content/uploads/2015/08/Web-Logo_Trendfly_4-shadow.png'); 
    }
    #branding { 
        background-color: transparent; 
    }

    I don’t quite get you on the second question i.e. “make background have a scroll”. Please clarify it.

    Let me know if this helps you.

    Regards,
    Mahesh

    in reply to: How to get rid off space #81430
    Mahesh
    Keymaster

    Hi @gordon,

    Yes, white space displayed in the page is where the blogs are displayed. The white space is there because of following reasons:
    1. By default, the title for aside post format are hidden
    2. The option you’ve chosen for the layout in “Customize=> Theme Options=> Layout Options=> Archive Content Layout” is Show Full Content (No Featured Image) and you’ve also checked “Check to hide excerpt/content on archive pages” box.

    So different solutions would be following.
    1. Change the post format to standard format.
    2. Go to “Customize=> Theme Options=> Layout Options” either change “Archive Content Layout” to other options than Show Full Content (No Featured Image) or uncheck “Check to hide excerpt/content on archive pages” box.

    If you don’t want the blogs content, let me know, I’ll provide Custom CSS.

    Regards,
    Mahesh

    in reply to: bigger logo in the header #81428
    Mahesh
    Keymaster

    Hi @FOEC,

    For changing both the color and background color of “Donate Now”, replace

    /* For changing color for Donate Now. */
    #secondary-menu ul.menu #menu-item-343 > a {
        color: #ff0000; /* Your desired color's hex value */
    }

    with this

    /* For changing color and background color for Donate Now. */
    #secondary-menu ul.menu #menu-item-343 > a {
        color: #ffffff; /* Your desired color's hex value */
        background-color: #0000ff; /* Your desired color's hex value */
    }

    For the menu bar, I think you’ve managed it already.

    Regards,
    Mahesh

    in reply to: Featured Content Titles #81427
    Mahesh
    Keymaster

    Hi @Ash,

    The CSS you’ve included changes the display properties for all elements with entry-header class in the page. If you only want to hide the page title then you have to specify it for the page title only.

    Replace your above CSS with the following:

    .page #main .page .entry-header {
        display: none;
    }

    Let me know if this fixes your issue.

    Regards,
    Mahesh

    in reply to: Dropdown sub-menu not working? #81331
    Mahesh
    Keymaster

    Hi @Invisible Cat,

    The steps you’ve used for creating sub menu is correct. You’ve used a plugin “Royal Image Hover Effect” and seems it is because of the plugin’s css that is causing the current issue.
    Try deactivating the plugin and check it.

    Let me know if this fixes your issue.

    Regards,
    Mahesh

    in reply to: Featured Post Slider Height #81330
    Mahesh
    Keymaster

    Hi @tivonjohnson,

    I checked your site, it seems fine. The slider in your site and in the live demo looks the same.

    Regards,
    Mahesh

Viewing 20 posts - 4,861 through 4,880 (of 4,922 total)