Forum Replies Created

Viewing 20 posts - 3,361 through 3,380 (of 4,116 total)
  • Author
    Posts
  • in reply to: Menu Descriptions #125008
    tikaram
    Participant

    @voodoochill : Sorry this option is not available. If you want to get your site customized you may hire a customizer.

    Regards,
    Tikaram

    in reply to: font awesome icons in menu? #125007
    tikaram
    Participant

    @voodoochill : Please make sure that you have followed the instructions properly. I tried with the plugin and its showing the home icon in the header. You cannot add icons in the menu from the customizer. Please check again following the plugin instructions and let me know if you have any more issues.

    Regards,

    Tikaram

    in reply to: Align Site Logo with the Site Title #124973
    tikaram
    Participant

    @friarpaul :
    1) To remove the gap add the following additional css

    #site-logo {
    	text-align: right;
    }
    #site-header {
    	text-align: left;
    }

    2) To center the title text for small screens add the following css.

    @media only screen and (max-width: 990px) {
    	#site-header {
    		width: 100% !important;
    		text-align:center;
    	}
    }

    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Woocommerce compatible? #124970
    tikaram
    Participant

    @voodoochill : Parallax Frame Free is not compatible with Woocommerce. Please follow this link to know more about the features of Parallax Frame Pro.

    Regards,
    Tikaram

    in reply to: Hide next and previous navigation in post #124969
    tikaram
    Participant

    @per : Glada to know that the issue has been solved.

    Regards,
    Tikaram

    in reply to: Company Logo in the secondary menu bar #124967
    tikaram
    Participant

    @wita-immobilien : You will need to download and activate the child theme and add the following code in the functions.php file of child theme.

    function catchresponsive_secondary_menu() {
        if ( has_nav_menu( 'secondary' ) ) {
    	?>
        	<nav class="nav-secondary" role="navigation">
        		<img src="http://1.bp.blogspot.com/-5l0RRPCgqfw/UqDmPP5mLnI/AAAAAAAADbk/i4ohihy8wHg/s1600/header+badge3.png" id="logo" style="float: left;" />
    
                <div class="wrapper">
                    <h2 class="screen-reader-text"><?php _e( 'Secondary Menu', 'catch-responsive-pro' ); ?></h2>
                    <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'catch-responsive-pro' ); ?>"><?php _e( 'Skip to content', 'catch-responsive-pro' ); ?></a></div>
                    <?php
                        $catchresponsive_secondary_menu_args = array(
                            'theme_location'    => 'secondary',
                            'menu_class' => 'menu catchresponsive-nav-menu'
                        );
                        wp_nav_menu( $catchresponsive_secondary_menu_args );
                    ?>
            	</div><!-- .wrapper -->
            </nav><!-- .nav-secondary -->
    
    <?php
        }
    }

    Note : Replace http://1.bp.blogspot.com/-5l0RRPCgqfw/UqDmPP5mLnI/AAAAAAAADbk/i4ohihy8wHg/s1600/header+badge3.png with the desired logo. let me know if you need further assistance.

    Regards,
    Tikaram

    in reply to: Mobile Menu Missing #124962
    tikaram
    Participant

    @petegwebmaster : Please try deactivating all plugins and follow this link to know more about Plugin conflict with our theme.

    Regards,
    Tikaram

    in reply to: Upgrading and customisations #124957
    tikaram
    Participant

    @voodoochill : You can copy the css from the free theme to pro theme and the customizations will apply as desired. Let me know if you have any issues with the theme.

    Regards,
    Tikaram

    in reply to: Sidebar move to top on mobiles instead of bottom #124955
    tikaram
    Participant

    @voodoochill: Go to Appearance => Customize => Additional css and add the following css.

    @media screen and (max-width: 990px) {  
     #content .wrapper {
       display: flex;
       flex-direction: column;
    }
    
    #content #main {
    order: 2;
    }
    
    #content .sidebar-primary {
    order: 1;
    }
    }

    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Comment Field Description #124953
    tikaram
    Participant

    @vbelanger : Please post in your site URL.

    Regards,
    Tikaram

    in reply to: Comment Field Description #124952
    tikaram
    Participant

    @vbelanger : Please post in your site URL.

    Regards,
    Tikaram

    in reply to: Where is my .zip file ? #124950
    tikaram
    Participant

    @a-little-box-of-memories : You’ll need to first download the theme from https://catchthemes.com/my-account/ page. Follow this link to know more about downloading and installing theme.
    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Widget CT:Tour Add Image #124901
    tikaram
    Participant

    @pex81 : We will look into that. Thank you for suggesting.

    Regards,
    Tikaram

    in reply to: Responsive template moves from side-to-side on iPhone #124900
    tikaram
    Participant

    @@robertf : Replace

    #sidebar-header-right {
    width: 90%;
    margin-top: 2em !important;
    margin-left: 30px !important;
    }

    with

    #sidebar-header-right {
    width: 90%;
    margin-top: 4em !important;
    margin-left: 30px !important;
    }

    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Site title resizing and search bar for mobiles #124899
    tikaram
    Participant

    @prachidamle7 :1) For mobile version the site tile is already centered.
    On large screen to align the title and the menu add the following additional css

    .nav-primary .wrapper {
    	padding:0;
    }

    2) To stop seeing the page names add the following css

    body:not(.blog) #content .entry-header {
    display: none;
    }

    3) To edit copyright text for Spanish page Go to Languages => String Translations in WordPress Admin section
    Find the copyright text for Spanish language and change accordingly.

    Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: change height of secondary menu bar #124892
    tikaram
    Participant

    @effess : Welcome and have a Good day.

    Regards,
    Tikaram

    in reply to: Align Site Logo with the Site Title #124890
    tikaram
    Participant

    @friarpaul : Go to Appearance => Customize => Additional css and add the following css

    #site-logo {
    	width: 25%;
    	float: left;
    }
    #site-header {
    	width: 75%;
    	float: left;
    }
    #masthead .wrapper {
    	background-color: rgba(0, 0, 0, 0.4);
    }

    Please remove the following css from the additional css

    #site-branding {
        background-color: rgba(0, 0, 0, 0.4);
    }

    Let me know if you have any more issues.

    Regards,
    Tikaram

    in reply to: Changing next and previous post link text #124889
    tikaram
    Participant

    @mande358 : The option to change next and previous post link text is not available from customizer. You will need to create a child theme and customize your site if you have knowledge about creating and editing child theme. Changing next and previous post link text is not easy like changing the search and read more. Let me know if you have any further issues.

    Regards,
    Tikaram

    in reply to: Responsive template moves from side-to-side on iPhone #124853
    tikaram
    Participant

    @robertf : Please let me know if I was able to resolve the issue or not.

    Regards,
    Tikaram

    in reply to: After upgrade from theme and wp problem with plug in #124852
    tikaram
    Participant

    @marga : Glad to know that the issue has been solved. Let me know if you have any further issues.

    Regards,
    Tikaram

Viewing 20 posts - 3,361 through 3,380 (of 4,116 total)