How to add one link to a page in mobile theme?
How to add one link to a page in mobile theme please? I tried adding in between:</head> <body id="{$BodyID}" class="{$BodyClass}"> <div id="Frame"> <div class="Banner"> <ul> {discussions_link} {profile_link} {inbox_link} {custom_menu} {event name="BeforeSignInLink"} {if !$User.SignedIn} <li class="SignInItem">{link path="signin" class="SignIn"}</li> {/if} </ul> </div>
But it is not showing
The link I wish to add is something in this format <a href="http://site.com/...">.....</a>
Best Answers
-
vrijvlinder MVP
Try adding it in the ul
<div class="Banner"> <ul> {discussions_link} {profile_link} {inbox_link} {custom_menu} {event name="BeforeSignInLink"} {if !$User.SignedIn} <li class="SignInItem">{link path="signin" class="SignIn"}</li> {/if} <li class="MyNewLink"><a href="http://site.com/...">.....</a></li> </ul> </div>
You may need to add css to the link afterward that is why I gave it a class in the example above so you can add it to the css and make it the color of the other links or match the style.
2
Answers
Try adding it in the ul
You may need to add css to the link afterward that is why I gave it a class in the example above so you can add it to the css and make it the color of the other links or match the style.
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
Thanks a lot @vrijvlinder, but the link is created in the 2nd row not in the same line of existing buttons
please give me link for me to see , it could be the menu needs to be made longer to fit.
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
Please the screenshot
please give me link so I can tell you what you can do to fix that, it is about css like I mentioned above.
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
http://forum.strukts.com
you forgot to remove the first link you added right after the ul
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
Oh sorry
Many thanks, now the website is perfect because of your continuous support
You are welcome !
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌