Support Requests item #779969, was opened at 2003-07-29 21:34
Message generated for change (Comment added) made by gbrackett
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=563509&aid=779969&group_id=81360
Category: Module: article
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: George Brackett (gbrackett)
Assigned to: Nobody/Anonymous (nobody)
Summary: Turn off borders on graphic links
Initial Comment:
I get borders on article graphics that are clickable
links. I think it would be far better if the borders
were turned off. I can always add a border graphically
if I want one.
----------------------------------------------------------------------
>Comment By: George Brackett (gbrackett)
Date: 2003-07-30 09:22
Message:
Logged In: YES
user_id=398373
Just for the heck of it, I eliminated the borders on
clickable images with a very simple change to line 128 of
Section.php in the function view_section():
$image_string = '<img src="' . $temp_image
. '" width="' . $this->image['width'] . '"
height="'
. $this->image['height'] . '" alt="' .
$this->image['alt']
. '" title="' . $this->image['alt'] . '"
border="0" />';
The only difference is the added border="0" near the end.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=563509&aid=779969&group_id=81360
|