Forum Moderators: open

Message Too Old, No Replies

bordercolor not working

no idea why!

         

javahava

1:58 pm on Apr 30, 2005 (gmt 0)

10+ Year Member



hi there,

am trying to do something quite simple, but can't figure out why it's not working. am trying to put a blue border around an image using:

<img src='/photos/<?=$small_photo?>' border=2 BORDERCOLOR="BLUE" width="150" height="170" alt="<?=stripslashes($rsPhotos["large_text"])?>">

but the border color is always black. there's some php before and after the code if that helps troubleshoot. any idea why the border color is always black? so odd. thanks for your help!

Robin_reala

2:04 pm on Apr 30, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



<img src='/photos/<?=$small_photo?>' style="border: 2px solid blue;" width="150" height="170" alt="<?=stripslashes($rsPhotos["large_text"])?>">

javahava

2:18 pm on Apr 30, 2005 (gmt 0)

10+ Year Member



beautiful - thanks a lot for helping! -javier