Themesphere Support Forum » Support » Spotlight

Navigation Issue

(3 posts)

Tags:

  1. Hi,

    at my blog www.immobilienbetrug.info I have added some pages, which I want to show in the navigation. Unfortunately there are only three subpages shown in menue, while I have 10 sub-pages. It is a Zip-Zone List of attorneys, which offer help for scammed users in real-estate-business. Therefore it would be helpful to show all sub-pages.

    Does anybody know, what to change in code?

    Regards,

    Markus

    Posted 1 year ago #
  2. Hello Ideo,

    Sorry for the delay in the reply. Thank you for waiting.

    Please open the stylesheet (wp-content/themes/spotlight/style.css)

    Find :

    #pages_navigation li ul {
      display: block;
      position: absolute; top: 27px; left: -9999em;
      float: left;
      list-style-type: none;
      list-style-position: outside;
      width: 120px;
    }

    Replace it with:

    #pages_navigation li ul {
      display: block;
      position: absolute; top: 27px; left: -9999em;
      float: left;
      list-style-type: none;
      list-style-position: outside;
      width: 120px;
      z-index: 2;
    }

    Then find:

    #category_navigation {
      background: #15130a url('imgs/category_nav_bg.jpg') repeat-x;
      border-top: 1px solid #7e7e74;
      border-bottom: 1px solid #a8a8a8;
      font-size: 11px; font-weight: bold;
      height: 27px;
      list-style: none;
      position: relative;
      padding: 0 13px;
      z-index: 2;
    }

    Replace it with:

    #category_navigation {
      background: #15130a url('imgs/category_nav_bg.jpg') repeat-x;
      border-top: 1px solid #7e7e74;
      border-bottom: 1px solid #a8a8a8;
      font-size: 11px; font-weight: bold;
      height: 27px;
      list-style: none;
      position: relative;
      padding: 0 13px;
      z-index: 1;
    }
    Posted 1 year ago #
  3. Great, it works. Thank you!

    Result can be seen at:

    www.immobilienbetrug.info

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.