Forum Replies Created

Viewing 20 posts - 3,821 through 3,840 (of 4,888 total)
  • Author
    Posts
  • in reply to: menu and submenu of Pro version not transparent #90155
    Mahesh
    Member

    @mupa: Yes, I did read it and it is not a bug. I don’t know why you are trying to make the primary menu and sub-menu’s background transparent with Custom CSS since it is already transparent by default setting. I didn’t any values in color option as you’ve mentioned above as it is a bug or something. The screenshot I’ve taken is just activating the theme and changed nothing in customizer.
    Please check the images in the below link:
    Catch Adaptive Pro img link: http://goo.gl/gH9bCo
    Catch Adaptive img link: http://goo.gl/azwu6f

    Regards,
    Mahesh

    in reply to: clean journal mobile version problem #90142
    Mahesh
    Member

    @asumi:
    1. problem with the clean journal design (mobile version):
    This issue is because of #main div’s width fixed to 900px, you’ll need to add media queries for responsive design / mobile friendly design.
    Example:

    @media screen and (max-width:480px) {
        #main {
            width: 100%;
        }
        .sidebar-primary {
            width: 100%;
        }
    }

    2. And by magic box, do you mean the widget with text “Magic Action Box…”? Well it is in the sidebar and for responsive design, the sidebar will automatically move just below the main content.

    Regards,
    Mahesh

    in reply to: Header after updating to 4.6.2 #90141
    Mahesh
    Member

    @eirikurva and @business901: Please fill up this form with your issue and details and we will check the in your server.
    https://catchthemes.com/blog/customizer-not-working-wordpress-update/

    Regards,
    Mahesh

    in reply to: Menu after slider #90140
    Mahesh
    Member

    @alexch: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action( 'init', 'catchresponsive_child_menu_after_slider' );
    function catchresponsive_child_menu_after_slider() {
    	remove_action( 'catchresponsive_after_header', 'catchresponsive_primary_menu', 20 );
    	add_action( 'catchresponsive_before_content', 'catchresponsive_primary_menu', 11 );
    }

    Note: If you want to remove the padding-bottom of slider. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider {
        padding-bottom: 0;
    }

    Regards,
    Mahesh

    in reply to: menu and submenu of Pro version not transparent #90139
    Mahesh
    Member

    @mupa: By default, the menu has opacity of 0.7 in both Catch Adaptive Pro and Catch Adaptive Free Versions.

    Regards,
    Mahesh

    in reply to: Top menu bar disappears when opening site on mobile. #90138
    Mahesh
    Member

    @centaine: In your Custom CSS, you have following CSS:

    #branding { 
    clip: rect(1px 1px 1px 1px); 
    /* IE7 */ clip: rect(1px, 1px, 1px, 1px); position: absolute; 
    }

    And it is causing the issue.

    Regards,
    Mahesh

    in reply to: reduce margin/padding in mobile mode #90137
    Mahesh
    Member

    @mupa: Sorry for the late reply. Thank you for using Catch Adaptive Pro. Can you please clarify more with an image as an example.

    Regards,
    Mahesh

    in reply to: adding google translate buttons in the head #90085
    Mahesh
    Member

    @nagesh-seogmail-com: Are you trying to add the buttons with plugin or just the links/codes? Since in Catch Responsive Free, header right section comes directly through code and the content cannot be modified through dashboard, you’ll need to create a child theme and override the following function.

    function catchresponsive_header_right() { ?>
    	<aside class="sidebar sidebar-header-right widget-area">
    		<section class="widget widget_search" id="header-right-search">
    			<div class="widget-wrap">
    				<?php echo get_search_form(); ?>
    			</div>
    		</section>
    		<?php if ( '' != ( $catchresponsive_social_icons = catchresponsive_get_social_icons() ) ) { ?>
    			<section class="widget widget_catchresponsive_social_icons" id="header-right-social-icons">
    				<div class="widget-wrap">
    					<?php echo $catchresponsive_social_icons; ?>
    				</div><!-- .widget-wrap -->
    			</section><!-- #header-right-social-icons -->
    		<?php
    		} ?>
    	</aside><!-- .sidebar .header-sidebar .widget-area -->
    <?php
    }

    Note: You can find more on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: Border #90076
    Mahesh
    Member

    @antoon: Nope, its working fine. Try removing it and check the difference (you’ll see small space change). I guess there is no other options.

    Regards,
    Mahesh

    in reply to: Border #90074
    Mahesh
    Member

    @antoon: Sorry, you mean to align the text to left in center, I thought you just want to align them to the left. Following code will work for that, but as you have the Menu title also inside the table, it’ll move title to too.

    .entry-content td:nth-child(1) {
        padding: 0 0 0 140px;
        text-align: left;
    }

    Regards,
    Mahesh

    in reply to: Border #90072
    Mahesh
    Member

    @antoon: What seems to be the problem? You don’t have the code in the Custom CSS, have you removed it?

    Regards,
    Mahesh

    in reply to: Adjust the promotion headline bar #90071
    Mahesh
    Member

    @techfinderr: For that add the following CSS, hope this works:

    @media screen and (min-width: 981px) {
        #homepage-message .left-section {
            margin-left: 15%;
        }
        #homepage-message .right-section {
            margin-right: 15%;
        }
    }

    Note: Please remove the previous CSS first.

    Regards,
    Mahesh

    in reply to: Header after updating to 4.6.2 #90068
    Mahesh
    Member

    @eirikurva: Please try deactivating your plugins one by one and check if the issue resolves.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Adjust the promotion headline bar #90062
    Mahesh
    Member

    techfinderr: Please replace the code I’ve given:

    @media screen and (min-width: 481px) {
        #homepage-message .left-section {
            text-align: center;
            width: 80%;
        }
    }

    with the following:

    #homepage-message .left-section {
        float: none;
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
    }
    
    #homepage-message .right-section {
        float: none;
        width: 178px;
        margin: 0 auto
    }

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Header after updating to 4.6.2 #90056
    Mahesh
    Member

    @eirikurva: Before WordPress 4.5, Catch Box Pro was using WordPress’s Custom Header as logo and since WordPress 4.5 provides Custom Logo, we have modified the code to support the WordPress Core support and then add Header Image feature which uses WordPress Custom Header. And since you’ve put images in both logo and custom header, two images are shown in you site. Please remove one of the image (Custom Logo or Custom Header). Go to :
    1. For Custom Logo: Dashboard=> Appearance=> Customize=> Site identity and remove Logo
    2. For Custom Header: Dashboard=> Appearance=> Customize=> Header Image and Hide Image

    Hope you understand. Let me know if any problem occurs.

    Regards,
    Mahesh

    Mahesh
    Member

    @cyberbox: Since WordPress 4.5, Catch Kathmandu theme has been a bit modified. For Header Featured Image, it now uses WordPress’s core Custom Header instead of using theme’s own Custom Header. All the functionality and settings are the same just difference is you will need to use Customizer.
    Hope you understand. Let me know if any problem occurs.

    Regards,
    Mahesh

    in reply to: change menu with #90053
    Mahesh
    Member

    @asumi:
    1. I checked your site and assume that you’ve managed to do the change by yourself.
    2. For making the sidebar smaller, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #main {
        width: 920px;
    }
    .sidebar-primary {
        width: 240px;
    }

    This will make the sidebar smaller for desktops, for small device and responsive design you’ll need to add media queries.
    Note: The width of the all widget as set to same but the height of the widget depends on the length of the content.

    Regads,
    Mahesh

    in reply to: Menu Line Height & Featured Slider Photo Size #90052
    Mahesh
    Member

    @alesia90230: Thank you for using Catch Evolution Pro.
    1. Line height of my primary menu text:
    Go to Dashboard=> Appearance=> Customize=> Theme Options => Custom CSS box and add the following CSS:

     #header-menu ul.menu a {
        line-height: 2em;
    }

    2. Reduce the size of my photos in the featured slider: Can you please clarify more on this?

    Regards,
    Mahesh

    in reply to: Border #90051
    Mahesh
    Member

    @antoon: Please add the following CSS:
    1. Left side to be aligned to the left

    .entry-content td:nth-child(1) {
        padding: 0;
        text-align: left;
    }
    .entry-content td:nth-child(2) {
        padding: 0;
        text-align: center;
    }

    2. White space between the items

    .entry-content td {
        line-height: 1;
    }

    Regards,
    Mahesh

    in reply to: Border #89991
    Mahesh
    Member

    @antoon: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .entry-content td {
        padding: 0;
        text-align: center;
    }

    Regards,
    Mahesh

Viewing 20 posts - 3,821 through 3,840 (of 4,888 total)