Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #51481
    Alexander
    Member

    Hello, thank you so much for developing this very user friendly word press template. I do have a few questions that maybe you can answer.

    Questions surround website: WeekendPick.com

    Question 1:
    The mobile navigation menu slide does not respond when I touch it with my finger on my iPhone 6 and iPhone 5s. I have to slide the page down to activate the hovering menu bar and then click the slider navigation to get it to work. Any suggestions to make this run smoother?

    Question 2:
    I deactivated the search and social media tabs in the hovering menu bar but the mobile version is still applying space for it making my company logo not center on the menu bar.

    Question 3:
    On my homepage I want to add a description under my slider and above the blog posts to state the nature of the site but I am unable to figure out how to add text there.

    Question 4:
    Do you have any suggestions on how to showcase my events in date order on the homepage and in the “Events” category page.

    Question 5:
    Is there a way to add a feature header in the category page (Ex: Restaurants, Lounges, Nightclubs and Events)?

    #51577
    Sakin
    Keymaster

    @Alexander: Thanks for your appreciation:

    1. It’s strange, I try your site with both iPhone 6plus and 5s. It’s working nice with my finger.
    — But can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    .mobile-menu { height: 40px; width: 40px; }
    .mobile-menu a { padding: 10px; }
    #top-logo img { max-height: 40px; }

    2. If you see it’s center with the site width. If we just take full width and it will not look center due to menu toggle. Ok we will make it full size in next version update.

    3. Sorry there is no option to add description under your slider in Catch Flames Pro. We have this option in other themes which we call it as Promotion Headline/Homepage Headlines. We are planning to add feature content and promotion headline in future. But at this stage you need to build child theme. For child theme, check out http://catchthemes.com/blog/create-child-theme-wordpress/. Then you can add message function in your child theme functions.php file. For example:

    function catchflames_chid_promotion() { ?>
    	<div id="promotion-headline">
    		<div class="wrapper">
    			<h2>Your Message</h2>
    		</div>
    	</div>
    <?php
    }
    add_action( 'catchflames_before_main', 'catchflames_chid_promotion', 60 );

    4. In Event category page and all, the posts are arrange in the order of posted date. So, you can edit those posts and edit the published date.

    5. For this, you need to build child theme and create function in your child theme functions.php file. For Example:

    function catchflames_category_header_image() { ?>
    	<div id="header-image">
    
    		<?php if ( is_category( 'restaurants' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php 
    		}
    		elseif ( is_category( 'lounges' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php
    		}
    		elseif ( is_category( 'nightclubs' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php
    		}
    		elseif ( is_category( 'events' ) { ?>
    			<img id="main-feat-img" alt="image title" src="Image URL" />
    		<?php
    		} ?>		
    
    	</div>
    <?php
    }
    add_action( 'catchflames_after_header', 'catchflames_category_header_image', 20 );
    #51767
    Alexander
    Member

    Thank you!!!!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Mobile Navigation Menu Slider Not Responsive’ is closed to new replies.