• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved [How to?] Modern AAC

Dagh

New Member
Joined
Nov 3, 2008
Messages
80
Reaction score
1
Hello people, I've recently made my first web and it's going well, I only have 2 doubts that I hope someone help me with 'em:

SOLVED 1.- I've the worgen layout so, basing in it, I want to know how to add a direction to those buttons at the right, I mean, when clicking them, they only like recharge the page, I want them to send to somewhere in my web. How can I do that?

Got this, think it's somehow the place to add the direction but dunno how:

Code:
				<a href="" class="button">
					Download Client
				<span>Official client</span>
			</a>
Ok so, that's my "button" I only need to know where to put the direction to be sended at.


SOLVED 2.- The second problem is with the Shop System by AndresPro... So, I've already set up the shop, adding the items and things, everything is ready I only need to know where to go, I mean wich direction should I put in the button that I want you to be directed to the "shop" because when I use http://127.0.0.1/index.php/p/v/gifts without being logged with an admin account it only recharges the web, just like the buttons before in the problem 1


SOLVED 3.- Ok so, I've solved the first and second problem and while advancing I founded another one.. When I log in the administration mode in the web, and I try to create a web, everything goes fine except at the moment of ending lines, I mean if i write:

Welcome
-
-
Not welcome.


It shows up like this:


Welcome - - Not Welcome


And also if I write an url, it shows like just normal, it doesn't has any highlighted and that "click to direct" function, I mean it shows only like simple text and not an URL. Thats all, I hope it is the last problem.



Thanks for reading, hope someone knows what to do :)
 
Last edited:
@Wymietek: Thanks a lot! It was pretty easy, don't actually know why I didn't saw it before lol

Bump
 
Last edited by a moderator:
To make a new line, type <br /> (stands for break row). In order to make a link 'clickable', you would have to do like your first example. Wrap the text with an A element.
PHP:
<a href="your link url">The text you want to display for the link</a>
<a href="http://www.google.com/">Google</a>
 
Back
Top