The actinic Navbar is created using NETQUOTEVAR:FOOTERGUIDE in the template Act_Primary.html.
If you copy that variable down to just above the closing </body> tag in that template it wil display your actinic navigation bar options such as view basket, etc.
Alternatively you can hard code it there, or into the footer text in Design Options. Just make sure if it is in the footer box to surround any html with
!!< and >!! at the start and end of the string of code.
I am looking to do this also but is it possible to change to layout of the 2nd navigation layout. For example the layout i wish to have in the footer of the page would take the form:
SECTION1 | SECTION2 | SECTION3 etc (with a "space, |, space after each section link).
At the moment the links are hardcoded but it would nice to have this automated!
In the Advanced User guide there is a section on using NETQUOTEVARs for each actual nav item.
I don't have them all to hand but they are like NETQUOTEVAR:NAVBCARTLINK, NETQUOTEVAR:NAVBCHECKOUTLINK, etc where each one controls the item individually.
So you could include <a href="NETQUOTEVAR:NAVBCHECKOUTLINK">Checkout</a> | <a href="...... perhaps.
You could use NETQUOTEVAR:TOPLEVELSECTIONSTOP to insert an automatic section list (if you are not using it elsewhere). Insert this variable into Act_Primary.html towards the bottom then...
In 'Design | Options | Sections' set the column count for the top-level section list to how every many section links you want in a row.
Then in 'Design | Options | Layouts' edit the 'Top Level Section Link Layout' template to include in a '|'.
I followed the guidance in the quote below to create a 2nd Nav-Search Bar. Which has worked.
Originally posted by DaveT
Hello
The actinic Navbar is created using NETQUOTEVAR:FOOTERGUIDE in the template Act_Primary.html.
If you copy that variable down to just above the closing </body> tag in that template it wil display your actinic navigation bar options such as view basket, etc.
Alternatively you can hard code it there, or into the footer text in Design Options. Just make sure if it is in the footer box to surround any html with
!!< and >!! at the start and end of the string of code.
Best wishes.
But, subsequently, I've obviously moved some code around unintentionally and the page now breaks before the 2nd Nav-Bar - so that it appears to the right-hand side of the main page (see attached).
What do I need to do to get this 2nd Nav-Bar appearing at the foot of the page? Any suggestions appreciated.
It's coming to be something to do with the HTML tables which build your overall layout. There is some incompatibility somewhere.
I suggest viewing the source of the generated page using something like Dreamweaver and see if it is more informative. Either that or let us know your URL and we may be able to identify the problem for you.
This shows the problem of the 2nd Nav-Bar in Actinic (which should be a the foot of the page) being out of positon and to the right-handside of the main page.
Any suggestions on how to correct this are appreciated.
Please remove the align="left" and the bottom navigation bar will snap into the correct place.
I think this change will be made in Act_Primary.html.
Also, I notice you have no <body> tags in your design. You need to add these in really in order to have valid HTML. Add <body> just after <HTML> and add </body> just before </HTML>
Comment