Hello,
I'm working with the sector template and would like to know how one would style a NO URL "title " link in either the left or right navigation columns if possible?
Thanks!
style title in left and right navigation
-
- Posts: 4
- Joined: Tue Nov 24, 2015 4:20 pm
- Location: CALIFORNIA
-
- Site Admin
- Posts: 318
- Joined: Fri Aug 04, 2006 1:30 pm
- Location: Utah
- Contact:
Re: style title in left and right navigation
In the Sector theme we set up a left navigation item called "Nav Item With No URL" with the 'No URL (a title maybe)' setting, this is what the HTML for that item looks like:
<div class="left_pagelinks">
<a class="left_pagetitle">Nav Item With No URL</a> </div>
And according to Firebug, the majority of the styling for this "left_pagetitle" class comes from the bb-sector.css Publish file. You can make a copy of this file in Merchandising -> Custom Templates -> Includes
using 'Copy ShopSite Publish File' and then edit your copy.
<div class="left_pagelinks">
<a class="left_pagetitle">Nav Item With No URL</a> </div>
And according to Firebug, the majority of the styling for this "left_pagetitle" class comes from the bb-sector.css Publish file. You can make a copy of this file in Merchandising -> Custom Templates -> Includes
using 'Copy ShopSite Publish File' and then edit your copy.
-
- Posts: 4
- Joined: Tue Nov 24, 2015 4:20 pm
- Location: CALIFORNIA
Re: style title in left and right navigation
Thank You David