• 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!

Website help

kennyubuntu

Member
Joined
May 20, 2016
Messages
150
Reaction score
13
I need a help to write on this box

PHP:
           <a href="tradeoff.php" width="147" height="24" border="0" />Market</a>
           <img src="layout/images/menubuttonnothing.png" width="147" height="24" border="0" />

It's not work, first showing the menubutton and after showing the link
I want the textlink ON menu box
menubuttonnothing.png
 
PHP:
<a href="tradeoff.php" width="147" height="24" border="0"/><img src="layout/images/menubuttonnothing.png" width="147" height="24" border="0"/></a>

This will make the image clickable.

Nvm, I misreaded it. There are multiple ways to do this. You can give the image element a position: absolute; or use it as a background-image.

http://stackoverflow.com/questions/5758642/how-to-put-text-over-images-in-html
 
Last edited by a moderator:
PHP:
<a href="tradeoff.php" width="147" height="24" border="0"/><img src="layout/images/menubuttonnothing.png" width="147" height="24" border="0"/></a>

This will make the image clickable.

Nvm, I misreaded it. There are multiple ways to do this. You can give the image element a position: absolute; or use it as a background-image.

http://stackoverflow.com/questions/5758642/how-to-put-text-over-images-in-html

Thank You!

Just 2 little things...
You know how to:

Move text to down to be on center... It's not being to good, look how showing:
IMG

---

If anybody need code to do it it's here (i'm using znote aac)

left-menu.php
PHP:
<div class="MenuLeft"><a href="tradeoff.php"/>Market</a></div>
<div class="MenuLeft"><a href="spells.php"/>Spells</a></div>
<div class="MenuLeft"><a href="highscores.php"/>Highscores</a></div>
<div class="MenuLeft"><a href="gallery.php"/>Gallery</a></div>
<div class="MenuLeft"><a href="bounty_hunter.php"/>Bounty Hunter</a></div>
<div class="MenuLeft"><a href="onlinelist.php"/>Who is Oline</a></div>
<div class="MenuLeft"><a href="deaths.php"/>Last Deaths</a></div>


<div align="center"><img src="layout/images/chain2.png" width="128" height="22" /></div>
<div class="MenuLeft"><a href="buypoints.php"/>Buy Points</a></div>
<div class="MenuLeft"><a href="shop.php"/>SHOP</a></div>

/layout/warheim.css
PHP:
.MenuLeft {
   width:147px;
   height:24px;
   background-image: url(images/menubuttonnothing.png);
}
 
Last edited:
Back
Top