- Posts: 13
COMMUNITY FORUM
- Forum
- Free Joomla Extensions & Templates
- Simple Image Gallery
- <br \> and <br> in tooltip on mouseover on thumbs
<br \> and <br> in tooltip on mouseover on thumbs
- MIGLAND
-
Topic Author
- Offline
- New Member
Less
More
14 years 6 months ago #36056
by MIGLAND
<br \> and <br> in tooltip on mouseover on thumbs was created by MIGLAND
Hello
I try te resolve my problem searching forum but without success. fotorybicka.migland.pl/index.php?option=com_content&view=article&id=84&Itemid=62 Here I have SIG gallery but very frustrated are tags of html when I mouse over on the thumb.
I try te resolve my problem searching forum but without success. fotorybicka.migland.pl/index.php?option=com_content&view=article&id=84&Itemid=62 Here I have SIG gallery but very frustrated are tags of html when I mouse over on the thumb.
Please Log in or Create an account to join the conversation.
- Katia
-
- Offline
- Platinum Member
Less
More
- Posts: 4696
14 years 6 months ago #36057
by Katia
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Katia on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
Did you solve your issue? Cause I cannot see any problem...
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- etkritikonspoudon
-
- Offline
- Junior Member
Less
More
- Posts: 38
14 years 6 months ago - 14 years 6 months ago #36058
by etkritikonspoudon
Replied by etkritikonspoudon on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
I'm having the same issue exactly...the tags are showing when the mouse button hovers above any of the images
Also, it's a pity one cannot set the thumbnail size for each picture (or article) separately, because that creates a big distance from text underneath, even if there is just one paragraph space between the {gallery}**{/gallery} and the text following it...but that's another thing (a feature and not an issue)
Also, it's a pity one cannot set the thumbnail size for each picture (or article) separately, because that creates a big distance from text underneath, even if there is just one paragraph space between the {gallery}**{/gallery} and the text following it...but that's another thing (a feature and not an issue)
Please Log in or Create an account to join the conversation.
- etkritikonspoudon
-
- Offline
- Junior Member
Less
More
- Posts: 38
14 years 6 months ago #36059
by etkritikonspoudon
Replied by etkritikonspoudon on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
Adding to the above message, maybe it will help mentioning the software configuration for the site:
PHP 5.2.14
MySQL 5.1.48
Joomla 1.5.20
PHP 5.2.14
MySQL 5.1.48
Joomla 1.5.20
Please Log in or Create an account to join the conversation.
- MIGLAND
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 13
14 years 5 months ago #36060
by MIGLAND
Replied by MIGLAND on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
when U move mouse over picture U have description with no-needed html operators.
Please Log in or Create an account to join the conversation.
- John Vincent
-
- Offline
- Senior Member
Less
More
- Posts: 68
14 years 4 months ago #36061
by John Vincent
Replied by John Vincent on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
Hi,
I am also getting the tool tip error - has anyone made progress on a solution.
Please help
John
I am also getting the tool tip error - has anyone made progress on a solution.
Please help
John
Please Log in or Create an account to join the conversation.
- kniven
-
- Offline
- New Member
Less
More
- Posts: 2
14 years 3 months ago - 14 years 3 months ago #36062
by kniven
Replied by kniven on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
same error for me when holding mouse over thumnails.
Tested in Firefox 3.6.8 chrome8.0 and IE8 and same result
version 1.2.1
Joomla! 1.5.22 Stable
Also gets warinings when viewing in IE8
Row: 92
Character: 741
code: 0
URI: mootools.js
Row: 59
Character: 102
code : 0
URI: mootools.js
Tested in Firefox 3.6.8 chrome8.0 and IE8 and same result
version 1.2.1
Joomla! 1.5.22 Stable
Also gets warinings when viewing in IE8
Row: 92
Character: 741
code: 0
URI: mootools.js
Row: 59
Character: 102
code : 0
URI: mootools.js
Please Log in or Create an account to join the conversation.
- juanp
-
- Offline
- New Member
Less
More
- Posts: 11
14 years 3 months ago #36063
by juanp
Replied by juanp on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
NOW I DON'T HAVE ANY PROBLEM
EVERYTHING IS ALL RIGHT
THIS SIMPLE IMAGE GALLERY IS GREAT
****************************************************
to take away Alt text displayed on tooltips I did 3 changes in the file /plugins/content/jwsig.php
else {$html .= '<b>'.$images[$a].'</b>';}
changed to:
else {$html .= $images[$a];}
if ($displaymessage) {$html .= $message.'
<b>'.$itemtitle.'</b>';}
changed to:
if ($displaymessage) {$html .= $message.$itemtitle;}
if ($displaynavtip) {$html .= $navtip.'
';}
change to:
if ($displaynavtip) {$html .= $navtip;}
****************************************************
and to take away the statusbar warnings I did this:
since it was working fine
just that it showed warnings
I silenced it AND NOW IT WORKS GREAT
I simply added this line to the file /plugins/content/jwsig.php:
<script type="text/javascript">window.onerror=Block_Error;function Block_Error(){return true;}</script>
before this line:
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js"></script>
see more details here:
forum.joomlaworks.net/simple-image-gallery-(plugin)/sig-plugin-shows-status-bar-warnings/
EVERYTHING IS ALL RIGHT
THIS SIMPLE IMAGE GALLERY IS GREAT
****************************************************
to take away Alt text displayed on tooltips I did 3 changes in the file /plugins/content/jwsig.php
else {$html .= '<b>'.$images[$a].'</b>';}
changed to:
else {$html .= $images[$a];}
if ($displaymessage) {$html .= $message.'
<b>'.$itemtitle.'</b>';}
changed to:
if ($displaymessage) {$html .= $message.$itemtitle;}
if ($displaynavtip) {$html .= $navtip.'
';}
change to:
if ($displaynavtip) {$html .= $navtip;}
****************************************************
and to take away the statusbar warnings I did this:
since it was working fine
just that it showed warnings
I silenced it AND NOW IT WORKS GREAT
I simply added this line to the file /plugins/content/jwsig.php:
<script type="text/javascript">window.onerror=Block_Error;function Block_Error(){return true;}</script>
before this line:
<script type="text/javascript" src="'.$mosConfig_live_site.'/plugins/content/plugin_jw_sig/mootools.js"></script>
see more details here:
forum.joomlaworks.net/simple-image-gallery-(plugin)/sig-plugin-shows-status-bar-warnings/
Please Log in or Create an account to join the conversation.
- kniven
-
- Offline
- New Member
Less
More
- Posts: 2
14 years 3 months ago #36064
by kniven
Replied by kniven on topic Re: <br \> and <br> in tooltip on mouseover on thumbs
Thanks juanp both solutions worked fine :D
Please Log in or Create an account to join the conversation.
- Forum
- Free Joomla Extensions & Templates
- Simple Image Gallery
- <br \> and <br> in tooltip on mouseover on thumbs