field names disappear on mouse over

Phoca Guestbook - creating guestbooks in Joomla! CMS
drobny_jr
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 19 Mar 2017, 17:22

field names disappear on mouse over

Post by drobny_jr »

Hi,

on mouseover the field names (subject, name, etc) disappear.

In HTML Debugger you see after the mouse over a style display none.

Whats happen?

Gr. Jay
Guestbook 3.0.5
Joomla 3.5.1
christine
Phoca Hero
Phoca Hero
Posts: 2734
Joined: 28 Nov 2010, 17:20

Re: field names disappear on mouse over

Post by christine »

Hi Jay,

you hv missed many security releases in the past! Pls update your Joomla! immediately.

More information: https://www.joomla.org/announcements/re ... eased.html (at the moment down for maintenance)

To know what happend with your field names etc., we would need your Site please.

Kind regards, Christine
drobny_jr
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 19 Mar 2017, 17:22

Re: field names disappear on mouse over

Post by drobny_jr »

Hi Christine,

thx for your answer. I know I have to update, but we have some problem.

Site is under construction. Is not finish yet.

reds35.stuttgart-reds.de/index.php/gaestebuch

Gr.
Jay
timtac
Phoca Newbie
Phoca Newbie
Posts: 9
Joined: 21 Mar 2017, 10:18

Re: field names disappear on mouse over

Post by timtac »

Hello,

what about this issue..., I see the same "bug" / "feature"?!

viewtopic.php?f=2&t=57625

Regards
christine
Phoca Hero
Phoca Hero
Posts: 2734
Joined: 28 Nov 2010, 17:20

Re: field names disappear on mouse over

Post by christine »

Hallo Jay & timtac,

Da die Seite deutsch ist, dann mal so weiter. Habe etliches probiert. Bei Jay gibt ja eine URL.

Befürchte, es hängt mit dem Template zusammen. Eventuell ein Konflikt zwischen Mootools und Bootstrap 3. Das war zumindest in anderen Fällen so. Um das herauszufinden, bitte das Template testweise auf Protostar setzen (Bootstrap 2).

Mehr kann ich dazu leider nicht sagen.

Liebe Grüße, Christine
drobny_jr
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 19 Mar 2017, 17:22

Re: field names disappear on mouse over

Post by drobny_jr »

Hallo Christine,

danke für die Info. Mit Prostar funktioniert es. D.h. für mich, dass ich mich leider nach einem anderen Gästebuch umschauen muss.

Nochmals vielen Dank für deine Mühe

Gr. Jay
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 47870
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: field names disappear on mouse over

Post by Jan »

Hallo,

ähnliches haben wir schon bei Menus im Template gelöst, da war ein Problem zwischen Mootools und Boostrap:

Bootstrap Template mit Dropdown Menu: wenn man mit Maus über Menu Link im Dropdown ging, verschwund dieser Menu Link

Beim Menu habe ich es mit diesem Code gelöst:

if (typeof MooTools != 'undefined') {
var mHide = Element.prototype.hide;
Element.implement({
hide: function() {
if (this.hasClass("dropdown")) {
return this;
}
if (this.hasClass("hasTooltip")) {
return this;
}
mHide.apply(this, arguments);
}
});
}

Aber, was für ein Problem auf der Seite ist, kann ich leider nicht sagen, ich glaube, dies wird was ähnliches, so wenn man dies Javascript auf die Seite gibt und "dropdown" zu anderer Klasse ändert, könnte man damit MooTools "deaktivieren" so es solche Probleme nicht mehr gibt :idea:

Jan
If you find Phoca extensions useful, please support the project
timtac
Phoca Newbie
Phoca Newbie
Posts: 9
Joined: 21 Mar 2017, 10:18

Re: field names disappear on mouse over

Post by timtac »

Hello Jan,

please come to my thread (viewtopic.php?f=2&t=57625) and have a look...!
I wouldn't like to go further in two parallel threads with my issue.

Regards
Timtac
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 47870
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: field names disappear on mouse over

Post by Jan »

Ok
If you find Phoca extensions useful, please support the project
Post Reply