Elxis CMS Forum

Extensions => Templates => Topic started by: babis1 on February 24, 2007, 14:49:11

Title: blue line all over the link
Post by: babis1 on February 24, 2007, 14:49:11
i think that is mambot theme when i use the ibrowser to make a pop up window with one of my images i use a small image after like link so if you making clik you can see the popup window but i have a problem because the small image have aroud one blue line i try with the css to change this color but i do nothing then i go mambot-editors-tiny-......i found the popup_php but i thing that in not there what i search can you tell me how i change this?
Title: Re: blue line all over the link
Post by: eliasan on February 24, 2007, 21:42:56
Your <img> tag, border property is not set to 0.
Title: Re: blue line all over the link
Post by: babis1 on February 25, 2007, 14:55:58
it works ....but it doesn't work the param bordercolor also in editor doesn't  work the javascript lang... if you try to write something
Title: Re: blue line all over the link
Post by: eliasan on February 26, 2007, 09:00:44
I am afraid I can't follow you. What it works and what doesn't?
Title: Re: blue line all over the link
Post by: babis1 on February 26, 2007, 10:53:56
1. if i give bordercolor="#...... this dont work the editor erase automatically this parameter
2.if i give js code also the editor erase all (i mean the tiny editor)
Title: Re: blue line all over the link
Post by: eliasan on February 26, 2007, 17:42:41
The definition of the img tag is:
<img src="url to image" border="1|0" alt="alt text" title="title text">

If you do not want to see the blue border line around the image when it is set as a link, all you have to do is set the border parameter to 0.

If you define the img tag properties using CSS then you could type something like that:

img {
border: 0px none;
.
.
.
}

Note: The dots (...) mean that other definitions may follow.