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

Html Code again -.-

dydocan

dydocan
Joined
Jul 2, 2010
Messages
95
Reaction score
0
<div style="padding-left: 20%; padding-top: 19%;">
<a href="**"><img src="main/wom.png" border="0" ></a>
</div>

<div style="padding-left: 59%; padding-top: 20%;">
<a href="**"><img src="main/wt.png" border="0" ></a>
</div>

shouldn't this work?

The first image is perfect as I want it to be but the second one padding-left is perfect but padding-top is bugging. if I have 20% on it it is like 2 pages down...

and if I have padding-top0% then it is at the bottom of the page.... wtf?
 
what do you want to do? you want them to be in the same row? if so, you can try something like this
HTML:
<div style="padding-left: 20%; padding-top: 19%;">
	<a href="**">
		<img src="main/wom.png" border="0" />
	</a>
	<a href="**">
		<img src="main/wt.png" style="padding-left: 39%;" border="0" />
	</a>
</div>
if this isn't it, try to explain better

and you should use pixels for padding, not percent or it may look bad with some resolutions, depending on how your layout is made
 
Back
Top