Hi, just bought the Hayley template, it is real nice.
Only thing I don't like is the overlay effect on the menu's, which dimms the page with some kind of overlay.
How can I remove that overlay effect?
Thanks in advance, Burt
- BurtNL
-
- Commercial Templates
- Tuesday, 16 October 2018
- Subscribe via email
Hi Burt
To amend you can add the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
Ciaran
To amend you can add the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
.hornav > ul > li::after {
display: none;
}
Ciaran
- more than a month ago
- Commercial Templates
- # 1
Hello
In your templates scripts.php (../templates/j51_hayley/inc/scripts.php) replace the following...
LINE 77 - 87
With..
Ciaran
In your templates scripts.php (../templates/j51_hayley/inc/scripts.php) replace the following...
LINE 77 - 87
if($this->params->get('sticky_sw')) {
// Sticky Div
$document->addScript('templates/'.$this->template.'/js/jquery.sticky.min.js', 'text/javascript', false, true);
$document->addScriptDeclaration('
jQuery(window).load(function(){
jQuery(".header_main").sticky({
topSpacing: 0
});
});
');
}
With..
if($this->params->get('sticky_sw')) {
// Sticky Div
$document->addScript('templates/'.$this->template.'/js/jquery.sticky.min.js', 'text/javascript', false, true);
$document->addScriptDeclaration('
jQuery(window).load(function(){
jQuery(".header_hornav").sticky({
topSpacing: 0
});
});
');
$document->addStyleDeclaration('
.header_hornav {
width: 100%;
}');
}
Ciaran
- more than a month ago
- Commercial Templates
- # 3
Hello
In your templates scripts.php (../templates/j51_hayley/inc/scripts.php) replace the following...
LINE 77 - 87
if($this->params->get('sticky_sw')) {
// Sticky Div
$document->addScript('templates/'.$this->template.'/js/jquery.sticky.min.js', 'text/javascript', false, true);
$document->addScriptDeclaration('
jQuery(window).load(function(){
jQuery(".header_main").sticky({
topSpacing: 0
});
});
');
}
With..
if($this->params->get('sticky_sw')) {
// Sticky Div
$document->addScript('templates/'.$this->template.'/js/jquery.sticky.min.js', 'text/javascript', false, true);
$document->addScriptDeclaration('
jQuery(window).load(function(){
jQuery(".header_hornav").sticky({
topSpacing: 0
});
});
');
$document->addStyleDeclaration('
.header_hornav {
width: 100%;
}');
}
Ciaran
Thanks for posting this solution here Ciaran. I have tested the code and it works. Cool!
- more than a month ago
- Commercial Templates
- # 4
Hello
BY default this option is not available. May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and I will make this amendment for you. For our reference please paste a link to this post in your email.
Ciaran
BY default this option is not available. May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and I will make this amendment for you. For our reference please paste a link to this post in your email.
Ciaran
- more than a month ago
- Commercial Templates
- # 6
Hello
BY default this option is not available. May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and I will make this amendment for you. For our reference please paste a link to this post in your email.
Ciaran
Ciaran, could you please post the solution here also, I would like to know that too.
And it automatically creates some more documentation on these type of questions.
Thanks in advance, Burt
- more than a month ago
- Commercial Templates
- # 7
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »