@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 );