Awesome.bb Navigation bar
3 posters
Page 1 of 1
Awesome.bb Navigation bar
Is there a way to add more buttons in awesome.bb navigation bar?
I found no way trough administration panel (headers and navigation option is disabled)
Thanks in advance.
I found no way trough administration panel (headers and navigation option is disabled)
Thanks in advance.
Re: Awesome.bb Navigation bar
Are those additions to external sites? If yes, you can add them to the footer links at the bottom.
Lost Founder's Password |Forum's Utilities |Report a Forum |General Rules |FAQ |Tricks & Tips
You need one post to send a PM.
You need one post to send a PM.
When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
Re: Awesome.bb Navigation bar
For probably nonexistent reasons, the navbar is inserted through javascript. To add a new link, you would need a code like this one:
This whole code would have been one or 2 lines of html if the navbar was added in the templates.
Edit:Let me know if you need to add more than one link and I will edit the code for that
- Code:
var name="Link to x";
var url="google.com";
;function l(e,ev,c){e.addEventListener(ev,function(f){c(f)})};
var d=document;
;function q(e){
return d.querySelector(e);
}
;l(d, "DOMContentLoaded", function(){
var m=q("#main-menu>ul");
var e=d.createElement("li");
e.innerHTML='<a href="'+url+'"><span>"'+name+'"</span></a>';
m[1].appendChild(e);
});
This whole code would have been one or 2 lines of html if the navbar was added in the templates.
Edit:Let me know if you need to add more than one link and I will edit the code for that
Guest- Guest
Similar topics
» Awesome.bb
» Awesome Astrology
» Help with awesome toolbar
» Pure Awesome
» Topic to express your heartfelt thanks
» Awesome Astrology
» Help with awesome toolbar
» Pure Awesome
» Topic to express your heartfelt thanks
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum