View Single Post
  #45  
Old 04-06-2018, 11:35 AM
goofyunicorn's Avatar
goofyunicorn goofyunicorn is offline
Kelpie
 
Join Date: Feb 2018
Location: Unicorn Land
Posts: 101
Gender: Female
Credits: 12,679
goofyunicorn is on a distinguished road
Default

Quote:
Originally Posted by Dinocanid View Post
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)
Would you be able to make an ACP theme too if you have the time? :) I can pay you with credits or adoptables on BA if you require payment. Thank you so much for the theme, I love it.
__________________

Check out my Adoptable's Site! Art by the wonderful Eyesauce.
Reply With Quote