MyBB Community Forums

Full Version: add a hyperlink image above the sidebox
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to add an img that redirects to another site above the sidebox
are you using a plugin for getting the side boxes ? if so, which plugin ?
That plugin should have functionality to add a box, in any order you want. So add a box and place the image with the link in it.
@Ashley tried that too but the Image doesn't show up.


Try https://padhayee.in right side Links box!!!
(2018-10-31, 12:57 PM)kluh753 Wrote: [ -> ]the Image doesn't show up.

That's because the image doesn't exist. It gives a 404 when you try to load it:

Bharati script.png
path is wrong, try it like this:

<table border="0" cellspacing="1" cellpadding="4" class="tborder">
	<tr>
		<td class="thead"><strong>Links</strong></td>
	</tr>
	<tr>
		<td class="trow1">
			<a href="https://www.bharatiscript.com/" target="_blank">
			<img src="{$mybb->asset_url}/inc/plugins/Bharati script.png"></a>			
		</td>
	</tr>
</table><br />
and you may want to check on the spelling of the png filename
(2018-10-31, 01:08 PM)Wildcard Wrote: [ -> ]
(2018-10-31, 12:57 PM)kluh753 Wrote: [ -> ]the Image doesn't show up.

That's because the image doesn't exist. It gives a 404 when you try to load it:

Bharati script.png

The image exists in the server I just needed to change like Ashely1 said

(2018-10-31, 01:10 PM)Ashley1 Wrote: [ -> ]path is wrong, try it like this:

<table border="0" cellspacing="1" cellpadding="4" class="tborder">
	<tr>
		<td class="thead"><strong>Links</strong></td>
	</tr>
	<tr>
		<td class="trow1">
			<a href="https://www.bharatiscript.com/" target="_blank">
			<img src="{$mybb->asset_url}/inc/plugins/Bharati script.png"></a>			
		</td>
	</tr>
</table><br />
and you may want to check on the spelling of the png filename

Thanks it worked