MyBB Community Forums

Full Version: help with code!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Please visit here to see my issue!

as you can see i need some Ads in the side to help me fund this website. I placed a few test one's before adsense and look at this.

This is my Code and for some Odd reason it shows the "Cheap Games" then it shows the "Info" and the Info Text, then the Cheap Games Ad placement right underneath. I put the code in right or it looks correct. I checked it and everything im confused.

did i miss something?

			<strong>Contact Us</strong>
			<div class="float_right" style="padding-top: 5px;"><i class="fa fa-newspaper-o"></i></div>
		</td>
	</tr>
	<tr>
		<td class="trow1">
			<span class="smalltext fw4">
				Need any help? Want something taken down? Want advertisements? Then <a href="http://whiskeyducks.us/index.html#form1-4">contact us</a>, we should reply within 24 hours. Our submit a Support Forum Post.
			</span>
		</td>
		<strong>Cheap Games!</strong>
			<div class="float_right" style="padding-top: 5px;"><i class="fa fa-newspaper-o"></i></div>
		</td>
	</tr>
		</tr>
			<tr>
<td class="trow1">
  <center> <a href="https://www.g2a.com/r/user-5687345adf377"><img src="https://media.phonealchemist.com/images/g2a.png"></a></center>
</td>
			</span>
</table><br />
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<tr>
				<td class="thead side">
								<strong>Even Skins are accepted Donations! :)</strong>
			<div class="float_right" style="padding-top: 5px;"><i class="fa fa-newspaper-o"></i></div>
		</td>
	</tr>
			<tr>
<td class="trow1">
  <center> <a href="https://steamcommunity.com/tradeoffer/new/?partner=158751670&token=ppLojPPQ"><img src="http://www.gamasutra.com/db_area/images/news/2017/Mar/293482/steam%201.jpg"></a></center>
</td>
	</tr>


I need Cheap Games to be right above the Image G2A. I have the correct code but it shows this. Any help is appreciated i have no idea why this happens.
Remove
<strong>Cheap Games!</strong>

Then add
<center><strong>Cheap Games!</strong></center>


into
<td class="trow1">
<center> <a href="https://www.g2a.com/r/user-5687345adf377"><img src="https://media.phonealchemist.com/images/g2a.png"></a></center>

like this
<td class="trow1">
<center><strong>Cheap Games!</strong></center>
<center> <a href="https://www.g2a.com/r/user-5687345adf377"><img src="https://media.phonealchemist.com/images/g2a.png"></a></center>

that should work
(2017-06-03, 05:17 PM)Starlord Wrote: [ -> ]Remove
<strong>Cheap Games!</strong>

Then add
<center><strong>Cheap Games!</strong></center>


into
<td class="trow1">
<center> <a href="https://www.g2a.com/r/user-5687345adf377"><img src="https://media.phonealchemist.com/images/g2a.png"></a></center>

like this
<td class="trow1">
<center><strong>Cheap Games!</strong></center>
<center> <a href="https://www.g2a.com/r/user-5687345adf377"><img src="https://media.phonealchemist.com/images/g2a.png"></a></center>

that should work

Thanks it works! however it says Cheap Games still in the same spot. It has it twice. But it's good :Smile got it right next to the image thanks!
(2017-06-03, 11:27 PM)WhiskeyDucks Wrote: [ -> ]Thanks it works! however it says Cheap Games still in the same spot. It has it twice. But it's good :Smile got it right next to the image thanks!

looking at the websites source you didnt remove the old one <center><strong>Cheap Games!</strong></center>

at this part of the code
		<td class="trow1">
			<span class="smalltext fw4">
				Need any help? Want something taken down? Want advertisements? Then <a href="http://whiskeyducks.us/index.html#form1-4">contact us</a>, we should reply within 24 hours. Our submit a Support Forum Post.
			</span>
		</td>
                  <center><strong>Cheap Games!</strong></center> REMOVE THIS LINE!!!!!!
(2017-06-04, 02:18 AM)Starlord Wrote: [ -> ]
(2017-06-03, 11:27 PM)WhiskeyDucks Wrote: [ -> ]Thanks it works! however it says Cheap Games still in the same spot. It has it twice. But it's good :Smile got it right next to the image thanks!

looking at the websites source you didnt remove the old one <center><strong>Cheap Games!</strong></center>

at this part of the code
		<td class="trow1">
			<span class="smalltext fw4">
				Need any help? Want something taken down? Want advertisements? Then <a href="http://whiskeyducks.us/index.html#form1-4">contact us</a>, we should reply within 24 hours. Our submit a Support Forum Post.
			</span>
		</td>
                  <center><strong>Cheap Games!</strong></center> REMOVE THIS LINE!!!!!!

Thanks i got it working! I appreciate your help.   Smile