Latest topics
» Forumactif Edge - Releases
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
by Ange Tuteur Tue 03 Sep 2019, 11:49
» GIFActif - Giphy Button for the Editor
by Ange Tuteur Wed 08 May 2019, 17:21
» Forum Closure
by Ange Tuteur Mon 01 Jan 2018, 01:28
» Chit Chat Thread
by Valoish Sun 31 Dec 2017, 19:15
» Font/Text background color.
by Valoish Sun 31 Dec 2017, 19:11
» Forumactif Messenger - Instant Message Application for Forumotion
by Wolfuryo Sun 31 Dec 2017, 18:24
» [GAME] Count to One Million!
by brandon_g Fri 29 Dec 2017, 18:58
» Post Cards
by manikbiradar Wed 20 Dec 2017, 07:50
» [GAME] Countdown from 200,000
by Valoish Wed 13 Dec 2017, 23:22
» GeekPolice Tech Support Forums - GeekPolice.net
by Dr Jay Mon 11 Dec 2017, 19:12
» Asking about some plugin for Forumotion
by Dr Jay Mon 11 Dec 2017, 19:10
» [GAME] What are you thinking right now?
by Van-Helsing Sat 09 Dec 2017, 14:51
» Widget : Similar topics
by ranbac Wed 06 Dec 2017, 18:11
» Change the Background of the Forum and put an image and how to make prefixs?
by Clement Wed 06 Dec 2017, 15:19
» Hello from Western Australia
by SarkZKalie Wed 06 Dec 2017, 05:34
Recent Tutorials
Top posting users this month
Top Achievers
Who is online?
In total there are 31 users online :: 0 Registered, 0 Hidden and 31 Guests :: 1 Bot
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
None
Most users ever online was 515 on Tue 14 Sep 2021, 15:24
Style of null error
Page 1 of 1 • Share
hello
i use to both my forums your codes and java
i get many errors like this to both forums ..
http://iconskouliki.forumgreek.com/
http://keeponblogging.forumotion.com
if i turned off the java i dont see the problem at all
but every java creates the same error with different number code so even if i switch off 2,3 java still i see the error with all the rest
random error page http://iconskouliki.forumgreek.com/99649.js
the forums are operating ok no problems as far as i can see... i am just curious what causing this so i can try to solve it
thanks all
i use to both my forums your codes and java
i get many errors like this to both forums ..
http://iconskouliki.forumgreek.com/
http://keeponblogging.forumotion.com
if i turned off the java i dont see the problem at all
but every java creates the same error with different number code so even if i switch off 2,3 java still i see the error with all the rest
random error page http://iconskouliki.forumgreek.com/99649.js
the forums are operating ok no problems as far as i can see... i am just curious what causing this so i can try to solve it
thanks all
Last edited by skouliki on Tue 18 Jul 2017, 12:32; edited 3 times in total
Hi @skouliki,
Are you using a plugin which adds the chatbox to the toolbar ? If so, replace your script with the one in this tutorial :
http://help.forumotion.com/t143414-add-the-chatbox-to-your-toolbar#977533
I think you might be using an old script for the old chatbox.
Are you using a plugin which adds the chatbox to the toolbar ? If so, replace your script with the one in this tutorial :
http://help.forumotion.com/t143414-add-the-chatbox-to-your-toolbar#977533
I think you might be using an old script for the old chatbox.
Hello
Update ....
I noticed a bug that occurs with ipad safari and chrome to registered members only
Some links in my nav bar ex.affiliates,contact,find us on fb ...are not clickable
After many attempts they only open if they open on a second window
This is not happening to guests ..if i disable the chatbox i do not have a problem
If you wish a test account plz inform me
Thanks
Here is what happens if i click as a member on affiliates
Update ....
I noticed a bug that occurs with ipad safari and chrome to registered members only
Some links in my nav bar ex.affiliates,contact,find us on fb ...are not clickable
After many attempts they only open if they open on a second window
This is not happening to guests ..if i disable the chatbox i do not have a problem
If you wish a test account plz inform me
Thanks
Here is what happens if i click as a member on affiliates
I think it might be related to visibility and the bottom properties. Even though you have it set to the top, the script is still applying the bottom property. Try adding these style rules to your stylesheet :
The first one disables the transition and removes the custom bottom values. The second one is more of an extra precaution, because I'm not sure if visibility:hidden; is to blame for the issue. I wasn't able to replicate the issue on my end, so these are mere assumptions. Let me know if these help at all.
- Code:
#fa_chat_container {
transition:none;
bottom:auto !important;
}
#fa_chat_container[style*="hidden"] {
display:none;
}
The first one disables the transition and removes the custom bottom values. The second one is more of an extra precaution, because I'm not sure if visibility:hidden; is to blame for the issue. I wasn't able to replicate the issue on my end, so these are mere assumptions. Let me know if these help at all.
i used both codes and now all the links are ok
so to understand the issue was caused only by the chatbox code?
thanks for your time and your willing to look into this
edit : the second code does the trick . i test them separately
so to understand the issue was caused only by the chatbox code?
thanks for your time and your willing to look into this
edit : the second code does the trick . i test them separately
Yeah, that's what it looks like. Normally visibility:hidden; removes the element from sight, but in this case it was removed from sight while also being clickable. That's normally not the case, but it's good to know display:none; still works.
- Sponsored content
Similar topics
Create an account or log in to leave a reply
You need to be a member in order to leave a reply.
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum