View Single Post
  #44  
Old 04-06-2018, 10:33 AM
Dinocanid's Avatar
Dinocanid Dinocanid is offline
Member
 
Join Date: Aug 2016
Location: Maryland, USA
Posts: 516
Gender: Unknown/Other
Credits: 63,653
Dinocanid is on a distinguished road
Default

You would use html, like this:
HTML Code:
<a class="dropdown-item" href="URL">SomeText</a>
Each dropdown is seperated into a list. For example, this is the "adoptables" dropdown:
HTML Code:
<li class="nav-item dropdown">
            <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Adoptables</a>
            <div class="dropdown-menu">
                <a class="dropdown-item" href="#">Adoption Center</a>
                <a class="dropdown-item" href="#">Pound</a>
                <a class="dropdown-item" href="#">My Adopts</a>
                <a class="dropdown-item" href="#">Promo Codes</a>
            </div>
        </li>
The URLs are set to "#", which doesn't lead anywhere. Replace it with whatever URL is needed to reach the page, like this for example:
HTML Code:
<li class="nav-item dropdown">
            <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Adoptables</a>
            <div class="dropdown-menu">
                <a class="dropdown-item" href="adopt">Adoption Center</a>
                <a class="dropdown-item" href="pound">Pound</a>
                <a class="dropdown-item" href="myadopts">My Adopts</a>
                <a class="dropdown-item" href="promo">Promo Codes</a>
            </div>
        </li>
To reach a page made with the ACP, you would make a link like this:
HTML Code:
<a class="dropdown-item" href="pages/view/pagename">MyPage</a>
For an ACP theme, I did make myself one in the past. It was basically just a mobile-friendly recolor though:

(I have less links in the sidebar because my site doesn't use a lot of them)
__________________
Reply With Quote