Forum
List Manager Support
List Manager supportForums
No se permite escribir sin estar logado. Por favor, login
Re: Stop pop-ups 29.03.2012 10:52
Hello,
tooltips are created using texts from language file, so you could avoid them changing the texts to empty ones. The language files are:
joomla\language\en-GB\en-GB.com_listmanager.ini
joomla\language\en-GB\en-GB.mod_listmanager.ini
depending on the view you're using (component or module).
If you edit the file you can empty the tooltips you don't want to show. For ex:
LM_LAST_PAGE="Last Page"
LM_LAST_PAGE_TOOLTIP="Go to last page"
for
LM_LAST_PAGE=""
LM_LAST_PAGE_TOOLTIP=""
and so on.
Hope this helps, best regards
Moonsoft Team
www.moonsoft.es
tooltips are created using texts from language file, so you could avoid them changing the texts to empty ones. The language files are:
joomla\language\en-GB\en-GB.com_listmanager.ini
joomla\language\en-GB\en-GB.mod_listmanager.ini
depending on the view you're using (component or module).
If you edit the file you can empty the tooltips you don't want to show. For ex:
LM_LAST_PAGE="Last Page"
LM_LAST_PAGE_TOOLTIP="Go to last page"
for
LM_LAST_PAGE=""
LM_LAST_PAGE_TOOLTIP=""
and so on.
Hope this helps, best regards
Moonsoft Team
www.moonsoft.es
Re: Stop pop-ups 11.07.2012 15:51
Hi,
This didn't really work for me. I removed the text between the quotes, but the tooltips are still showing up. I don't mind the tooltips, except they show up behind everything. How do I get them to show up in front. for example, on the list page, when you mouse of the "Add" button, the tooltip shows up behind the search textbox that is right below it. It would be better to have it show up in front so the user can actually read the tooltip.
This didn't really work for me. I removed the text between the quotes, but the tooltips are still showing up. I don't mind the tooltips, except they show up behind everything. How do I get them to show up in front. for example, on the list page, when you mouse of the "Add" button, the tooltip shows up behind the search textbox that is right below it. It would be better to have it show up in front so the user can actually read the tooltip.
Re: Stop pop-ups 12.07.2012 09:22
Hello,
If tooltips show behind other components, maybe you should change css class ".tip" in template css to make it show above. You could try to write a z-index property in this class as follows:
z-index:1000;
If you want more info about tooltips, you can check this page:
http://docs.joomla.org/How_to_add_tooltips_to_your_Joomla!_website#Adding_CSS_Styling_to_the_Tooltip_Joomla_v1.6.2B
Regards,
Moonsoft Team
www.moonsoft.es
If tooltips show behind other components, maybe you should change css class ".tip" in template css to make it show above. You could try to write a z-index property in this class as follows:
z-index:1000;
If you want more info about tooltips, you can check this page:
http://docs.joomla.org/How_to_add_tooltips_to_your_Joomla!_website#Adding_CSS_Styling_to_the_Tooltip_Joomla_v1.6.2B
Regards,
Moonsoft Team
www.moonsoft.es
Re: Stop pop-ups 05.03.2013 10:07
Hello,
tooltips are created using joomla default tooltips, so the style is not set by LM, but for your template stylesheet. You should find at your template css a class regarding this, for ex, at beez_20 default template:
(personal.css)
/* ++++++++++++++ tooltip ++++++++++++++ */
.tip
{
border:solid 1px #333;
background:#ffffcc;
}
Hope this helps, regards
Moonsoft Team
www.moonsoft.es
tooltips are created using joomla default tooltips, so the style is not set by LM, but for your template stylesheet. You should find at your template css a class regarding this, for ex, at beez_20 default template:
(personal.css)
/* ++++++++++++++ tooltip ++++++++++++++ */
.tip
{
border:solid 1px #333;
background:#ffffcc;
}
Hope this helps, regards
Moonsoft Team
www.moonsoft.es