Forum replies created
Hi,
In evolve-plus/library/functions/basic-function.php at line 940, Find the following block of codes.
<script type="text/javascript">
//
//
//
// Sticky Header
//
//
//
jQuery(document).ready(function($) {
if(jQuery('.sticky-header').length >= 1) {
jQuery(window).scroll(function() {
var header = jQuery(document).scrollTop();
var headerHeight = jQuery('.menu-header').height();
if(header > headerHeight) {
jQuery('.sticky-header').addClass('sticky');
jQuery('.sticky-header').fadeIn();
} else {
jQuery('.sticky-header').removeClass('sticky');
jQuery('.sticky-header').hide();
}
});
}
});
</script>
Replace it with the following block of codes.
<script type="text/javascript">
//
//
//
// Sticky Header
//
//
//
jQuery(document).ready(function($) {
if(jQuery('.sticky-header').length >= 1) {
jQuery(window).scroll(function() {
var header = jQuery(document).scrollTop();
//mod by denzel add height of .header, this will ensure sticky menu is deployed after menu.
var headerHeight = jQuery('.menu-header').height()+jQuery('.header').height();
if(header > headerHeight) {
jQuery('.sticky-header').addClass('sticky');
jQuery('.sticky-header').fadeIn();
} else {
jQuery('.sticky-header').removeClass('sticky');
jQuery('.sticky-header').hide();
}
});
}
});
</script>
This will fix the bug. Please clear your browser cache and revisit your website to see the changes. Clear your server or plugin cache if you have them installed. You may need to reload a few times if you have persistence cache plugins or server cache.
Thanks!
Denzel
Hi,
You can use the theme4press core plugin shortcode editor to try out all the possible combinations for the button shortcode and try to get as close as possible.
I am sorry, I am color blind and cannot assist in getting the correct color combination of the button.
Thanks!
Denzel
Hi,
For adjusting the slider height, Please try the following in Theme Options -> Custom CSS
Please adjust the px according to your requirement.
@media(max-width:768px) {
.menu-back {
height: 260px;
}
.anythingSlider.anythingSlider-default.activeSlider {
max-height: 210px;
}
.slide-container {
max-height: 190px;
}
}
As for your second question. Yes, there is Ajax, it’s for loading custom css on website front end.
Thanks!
Denzel
Hi,
We do not have a ready solution for your request. You can contact us for a quotation for this custom coding.
https://theme4press.com/services/
Thanks!
Denzel
Hi,
You are welcome!
Regards,
Denzel
Hi,
Just to inform you that we have setup a services page.
https://theme4press.com/services/
You can get a quotation for setting up a redirection.
Thanks!
Denzel
Hi,
That would require custom coding. You can get a quote via our Services page.
https://theme4press.com/services/
Thanks!
Denzel
Hi,
With reference to this tutorial.
http://www.echoecho.com/htmllinks08.htm
You can use #contactus as the link in the button shortcode. The anchor will be <a name="contactus"></a><h3>Contact Us</h3>
If you need help with this customization, you can contact us via our service page. https://theme4press.com/services/
Thanks!
Denzel
Hi,
Thank you for your explanation.
Please use the following code in your Theme Options -> Custom CSS
.home #bootstrap-slider .carousel-control {
display: none !important;
}
The above code works for home page only. Will need to change the css class if you need to apply this to other webpage.
Screenshot of result. http://prntscr.com/7s1wiw
Thanks!
Denzel
Hi,
Settings can be found in WordPress admin -> Theme Options -> Slideshows and WordPress admin -> Theme Options -> Elastic Slider
Thanks!
Denzel