Home › Forums › Fitness Pro Forum › Menu layout and slider image hyperlinking
- This topic has 1 reply, 2 voices, and was last updated 7 years ago by Sonl Sinha.
-
AuthorPosts
-
October 3, 2017 at 1:42 pm #84658
Nice theme and have figured out a lot on my own and by reading this forum, but still need help with these few issues:
-> There is a date (10.11.2016) showing up on front page. How can I hide it?
-> When frontpage is opened, an unproportionate sized image flashes for a second in slider
-> Is it possible to get the slider images hyperlinked? How to change the code?
-> Would like the menu to look like how it is in the free version (transparent with black dividers/bordes). How to get the dividers/borders?
-> In mobile view, closed menu is white, therefore looks like a search-box. Is it possible to change the color?
The site is www.naisbodi.fi
Thanks guys in advance! 🙂
October 4, 2017 at 9:21 am #84715Hi,
Kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:
Add this code there:
.post-date { display:none;} @media screen and (max-width:767px) { .toggle a { background-color:#f66605 !important;} }
Kindly go to header.php
Find
<img src="<?php echo esc_url($sv['image_src']); ?>" alt="<?php //echo esc_attr($sv['image_title']);?>" title="<?php echo '#slidecaption'.$n ; ?>"/>
And replace this code
<a class="read" href="<?php echo of_get_option('slideurl'.$n,true); ?>"><img src="<?php echo esc_url($sv['image_src']); ?>" alt="" title="<?php echo '#slidecaption'.$n ; ?>"/></a>
Regards,
Brad -
AuthorPosts
- You must be logged in to reply to this topic.