How to add a logo to your site?!

Forum
Last Post
Threads / Messages
The menu links aren't working and it seems that the buttons on the community tab are missing and just the same as the Explore tab. On the the UCP is working on the left. :/
 
Yeah, unless you mean the theme for the ACP itself?
The menu doesn't match the links because it's using html instead. To change the links, just go into the template.tpl and edit them. I had to make a new menu because the default one doesn't really scale well, and it was hard to style.
 
Yeah, unless you mean the theme for the ACP itself?
The menu doesn't match the links because it's using html instead. To change the links, just go into the template.tpl and edit them. I had to make a new menu because the default one doesn't really scale well, and it was hard to style.

I meant for the ACP itself and how do add links to the pages on the dropdown menus from template.tpl?
 
You would use html, like this:
HTML:
<a class="dropdown-item" href="URL">SomeText</a>

Each dropdown is seperated into a list. For example, this is the "adoptables" dropdown:
HTML:
<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:
<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:
<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:
5853047818027008.png

(I have less links in the sidebar because my site doesn't use a lot of them)
 
You would use html, like this:
HTML:
<a class="dropdown-item" href="URL">SomeText</a>

Each dropdown is seperated into a list. For example, this is the "adoptables" dropdown:
HTML:
<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:
<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:
<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:
5853047818027008.png

(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.
 
To edit a page that wasn't made in the ACP, you have to edit it's view file, found in public_html/view/somescriptview.php.
 

Similar threads

Users who are viewing this thread

  • Forum Contains New Posts
  • Forum Contains No New Posts

Forum statistics

Threads
4,280
Messages
33,130
Members
1,603
Latest member
Monako
BETA

Latest Threads

Latest Posts

Top