The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Need advice from Graphics experts - Problem
Hi all,
I hope someone here knows what is going on with this. The Issue: I have uploaded some small (18x18 pixels) icons into the postbit as links to Myspace, Twitter, Facebook, etc. After being upload, a strange line appears between them. <See Picture> I use XnView for basic resizing and cropping. They are a combination of .jpg and .png (tried combos of both). Here is the code: Code:
<if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field11']"> <a href="http://www.facebook.com/$post[field11]"> <img alt="My Facebook" border="0" src="http://gunclangaming.com/forums/images/misc/facebook.gif" border="0"/> </if></if> <if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field12']"> <a href="http://www.myspace.com/$post[field12]"> <img alt="Myspace" border="0" src="http://gunclangaming.com/forums/images/misc/myspace.gif" border="0"/> </if></if> <if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field13']"> <a href="http://www.playfire.com/$post[field13]"> <img alt="PlayFire" border="0" src="http://gunclangaming.com/forums/images/misc/playfire.png" border="0"/> </if></if> <if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field14']"> <a href="http://www.twitter.com/$post[field14]"> <img alt="Twitter" border="0" src="http://gunclangaming.com/forums/images/misc/twitter.png" border="0"/> </if></if> Thanks. Jeremy www.gunclangaming.com/forums |
#2
|
||||
|
||||
You didn't end any of your html links, you start <a href=blabla><img> then go on to make another if condition and more <a> But you never ended your first <a> tag.
HTML Code:
<if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field11']"> <a href="http://www.facebook.com/$post[field11]"> <img alt="My Facebook" border="0" src="http://gunclangaming.com/forums/images/misc/facebook.gif" border="0"/></a> </if></if> <if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field12']"> <a href="http://www.myspace.com/$post[field12]"> <img alt="Myspace" border="0" src="http://gunclangaming.com/forums/images/misc/myspace.gif" border="0"/></a> </if></if> <if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field13']"> <a href="http://www.playfire.com/$post[field13]"> <img alt="PlayFire" border="0" src="http://gunclangaming.com/forums/images/misc/playfire.png" border="0"/></a> </if></if> <if condition="is_member_of($bbuserinfo, 2, 6, 7, 9)"> <if condition="$post['field14']"> <a href="http://www.twitter.com/$post[field14]"> <img alt="Twitter" border="0" src="http://gunclangaming.com/forums/images/misc/twitter.png" border="0"/></a> </if></if> |
#3
|
|||
|
|||
Thanks Zachery.
Error carried forward. Thats what i get for Copy and Paste... and then never looking back at the simple code. Much appreciated. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|