Trying to edit a user groups coding

Status
Not open for further replies.

MirandaWright's

Active Member
3,248
2010
28
10
Trying to add a image with no border to user group like a rank icon

Code:
<img src="http://lulzimg.com/i11/cb1e62.gif" width="16" height="16"<span style="color: purple;
Code:
</B></span>


but my coding sucks ass anyone want to help or know the answer to remove border on image.

capturdvd.png

 
17 comments
Try this
Code:
<img src="http://lulzimg.com/i11/cb1e62.gif" width="16" height="16" border="0">


if above one doesnt work try this
Code:
<img src="http://lulzimg.com/i11/cb1e62.gif" width="16" height="16" style="border: 0 none;">

and acc to me, the border is displayed coz its part of a tag :|
 
Code:
<img src="http://lulzimg.com/i11/cb1e62.gif" width="16" height="16" border="0" />
<span style="color: purple; font-weight: 700">

</span>

OR

Code:
<img src="http://lulzimg.com/i11/cb1e62.gif" width="16" height="16" style="border: 0 none;" />
<span style="color: purple; font-weight: 700">

</span>
 
try this

this should work


Code:
<a class="imgbord" href="javascript:;"><img name="img01" src="http://lulzimg.com/i11/cb1e62.gif" border="3" bordercolor="#ff0000"></a>
sry forgot this

add this css to head
Code:
<style type="text/css">
A.imgbord:link {color: #ff0000;}
A.imgbord:active {color: #ff0000;}
A.imgbord:visited {color: #ff0000;}
A.imgbord:hover {color: #ff0000;}
</style>
change color if u want

or relate it to a remote css
 
k here u go

BOX 1
Code:
<img style="border:#60C solid 2px" src="http://lulzimg.com/i11/cb1e62.gif" width="20" height="20">

UR TEXT HERE

BOX 2
Code:
</span></b>
 
optimize it.

Either remove the <b> with
Code:
<img src="http://lulzimg.com/i11/cb1e62.gif" border="0"><span style='color:purple;font-weight:bold;'>

or put the style in a stylesheet and use a class like
Code:
<img src="http://lulzimg.com/i11/cb1e62.gif" border="0"><span class="PeanutClass">
and the stylesheet will have
Code:
.PeanutClass {color:purple;font-weight:bold;}
 
Status
Not open for further replies.
Back
Top