-
-
1-When i goes to the end of page and press the extra navigation menu buttons it takes me to the top of page along with opening the side menu , i want to open side menu without back to the top of page like that
https://www.qatargreenleaders.com/
2-How can i change the color of Extra navigation Button?
- This topic was modified 6 years, 11 months ago by Ghallab.
-
Hello,
1-I opened the extra side menu while at the end of a page and it did not resend me back to top. See screenshot of it: https://postimg.org/image/7v7yhmj45/
Did you manage to fix it?2-Add this code into your Custom Css Box (located in Tower > General Options):
#offcanvas-toggler>i { color: #a2411b !important; }
Best regards!
-
No what i need only once i press on navigation side button it’ll open side menu not return me back to top of page for my site, what i send is sample but my site is
-
Hello,
In file functions-tower.php i edited this block:
<a class="extra_navigation_button" href="#" > <i class="icon-bars"></i> </a>
To this:
<a class="extra_navigation_button" >
<i class="icon-bars"></i>
</a>
And in file header.php i edited this block:
<div class="extra_navigation <?php echo esc_attr($cl_redata['extra_navigation_position']) ?>"> <a href="#" class="close"></a> <div class="content"><?php dynamic_sidebar( "Extra Side Navigation" ); ?> </div> </div>
To this:
<div class="extra_navigation <?php echo esc_attr($cl_redata['extra_navigation_position']) ?>"> <a class="close"></a> <div class="content"><?php dynamic_sidebar( "Extra Side Navigation" ); ?></div> </div>
Then i added this css into your Custom Css box in General Options:
a.extra_navigation_button { cursor: pointer; } .extra_navigation a.close { cursor: pointer; }
Please clear cache and refresh page. I tested it and it should behave like you want now. Let us know.
Bet regards!
- This reply was modified 6 years, 10 months ago by Mirela.
-
-
You must be logged in to reply to this topic.