Announcement

Collapse
No announcement yet.

Changing the Brochure Nav Bar

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Changing the Brochure Nav Bar

    Hi All,

    Thank you all for your patience in helping me sort this blooming site out.

    I have a site with a 6 or 7 Brochure pages. This is great, but when viewing a Brochure page the nav bar along the top fills up with the links to the other brochure pages. This is theory is great, but it breaks my layout.

    Is there a way to hard code in links there and do away with the automatic adding of links in my horizontal nav bar?

    Maybe something in the Act_Brochure Primary.html page

    Cheers

    Grant

    #2
    Any ideas anyone??

    Comment


      #3
      a forum search will throw up a solution, this has been asked many times.

      you will have to hard code the nav in act brochure

      Comment


        #4
        Thank you very much Pinbrook - I worked it out, I must remember to search through the older versions of Actinic not just V8

        BUt now I am having CSS issues. My nav links need to be white. They are showing correctly in the catalog pages, but are the default blue in the brochure pages.

        I have the relevant CSS at the end of the theme.css style sheet. I then wrapped the TD cell in a <div id="nav"></div> in the Act_BrochurePrimary page.

        The CSS I am have at the moment is

        #nav {
        font-size:12px;
        color:#ffffff;
        }
        #nav a:link, #nav a:visited, #nav a:active {
        color: #ffffff;
        }
        #nav a:hover {
        color: #ffffff;
        }
        #nav td {
        font-size:12px;
        color:#ffffff;
        }
        #nav td a:link, #nav td a:visited, #nav td a:active {
        color: #ffffff;
        }
        #nav td a:hover {
        color: #ffffff;
        }


        Now - this works for the Catalog sections, but cant get it to work in the Brochure pages

        Comment


          #5
          Sorry guys - got it sorted

          I had missed out a > on the end of the div tag

          Comment

          Working...
          X