1. webmax
  2. General
  3. Monday, December 31 2018, 08:26 AM
Hi, is it possible to have the tool tip appear at the bottom of the text field instead of in a balloon when hovered? Thanks.
admin Accepted Answer
Admin
Hi,
unfortunately this is not possible with a simple way, because it is managed by Joomla (and in some cases from template).

Anyway you can try to add following javascript code to your template:
jQuery(document).ready(function(){
jQuery(".hasPopover").popover('destroy').popover({"html": true,"container": "body","placement":"bottom","trigger": "hover focus"});
});
  1. more than a month ago
  2. General
  3. # 1
webmax Accepted Answer
Pro
Thanks for the reply but where exactly should this code be added?
  1. more than a month ago
  2. General
  3. # 2
admin Accepted Answer
Admin
Hi,
Custom code should be managed by template, normally it have a option in the backend to add custom code or optionally have a custom file.

For example you seems to use a template called "rt_versla", it uses a framework called "Gantry 5". From documentation seems that you can use something called "Custom HTML Particle" (docs at http://docs.gantry.org/gantry5/particles/custom-html). You can put in the HTML a code like:
<script>
jQuery(document).ready(function(){
jQuery(".hasPopover").popover('destroy').popover({"html": true,"container": "body","placement":"bottom","trigger": "hover focus"});
});</script>

NOTE: Unfortunately we does not have experience with Rocket Theme templates, we found only this way with docs and never tested. For more info you could contact Rocket Theme support.
  1. more than a month ago
  2. General
  3. # 3
webmax Accepted Answer
Pro
Thanks so much for checking my concern. Will try to ask RocketTheme for some clues as well.
  1. more than a month ago
  2. General
  3. # 4
  • Page :
  • 1


There are no replies made for this post yet.
However, you are not allowed to reply to this post.