Status
Not open for further replies.

SpLaT*

Active Member
44
2009
0
0
sup? im im having issues with my code. i dont want these borders/outlines around my link areas. the code im using is similar to rapidshare. but the only difference is that i have these annoying borders.

this is the code im using. can someone edit this to remove the borders please?

current code:
Code:
<div class="oldown">
<a href="javascript:anzeigen('<?php echo $node->nid; ?>oldown')"><div><img src="https://www.pypal.com/en_US/i/scr/sm_333_oo.gif" id="pb<?php echo $node->nid; ?>oldown" /> One-Link Downloads:</div></a>
<div style="display:all;" id="p<?php echo $node->nid; ?>oldown">
<textarea rows="3" cols="60">
<?php echo $node->field_oldown[0]['safe']; ?>
</textarea>
</div>
</div>


Fail Code:

Code:
<div class="imdb">
<a href="javascript:anzeigen('<?php echo $node->nid; ?>imdb')"><div><img src="http://rapidshare.com/img2/pfeil_zu.jpg" id="pb<?php echo $node->nid; ?>imdb" /> IMDB Link:</div></a>
<div style="display:all; [COLOR=Black][I][B]outline:none; overflow:hidden; border:none"[/B][/I][/COLOR] id="p<?php echo $node->nid; ?>imdb"><input type="text" name="url" id="url" size="60" value="<?php echo $node->field_imdb[0]['safe']; ?>" /></div>
</div>
i was told to add the outline:none; etc... but that didnt work. im hoping someone here is a lot smarted the the guy who gave me this info

or would this have to be added to my page css?


2vljxid.jpg
 
9 comments
put this in your CSS
PHP:
input {border:none;}

or just in the
PHP:
<input type="text" name="url" id="url" size="60" value="<?php echo $node->field_imdb[0]['safe']; ?>" />

add
PHP:
style="border:none;"
 
but now for new links it doesnt go to a new line, it cuts off the end, can only see if u highlight and drag over
 
my uploaders are dumb when it comes to simple html/php <B> <U> <I> <BR> align="center" font size="#" etc...

but no. that didnt work.
 
Status
Not open for further replies.
Back
Top