- Posts: 48
- Thank you received: 0
Support for SermonSpeaker 4.x is canceled as it is for Joomla 2.5. I will gladly assist you with minor issues but I will not fix any bugs anymore in this releases.
The fix is to upgrade to SermonSpeaker 5.x and Joomla 3.x, which is better anyway.
The fix is to upgrade to SermonSpeaker 5.x and Joomla 3.x, which is better anyway.
Speaker names not visible on iphone
- Pamela Besteder
- Topic Author
- Offline
- Senior Member
Less
More
04 Sep 2014 04:58 #4822
by Pamela Besteder
Speaker names not visible on iphone was created by Pamela Besteder
A user mentioned to me today that when looking at our site from a laptop, he can see the speakers just fine along with their photo.
But when looking using a phone, the speaker column is blank BUT it does show the speaker listing garbled at the top of the page near the search area.
Is there something I can do to make it work on all applications?
Pam
But when looking using a phone, the speaker column is blank BUT it does show the speaker listing garbled at the top of the page near the search area.
Is there something I can do to make it work on all applications?
Pam
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
04 Sep 2014 10:53 #4824
by Thomas Hunziker
Replied by Thomas Hunziker on topic Speaker names not visible on iphone
That usually happens when there are conflicts between jQuery and Mootools. SermonSpeaker uses a Joomla core method to show the modal here.
Can you test if it also happens with the Beez template? Then it would be related to your template.
Can you test if it also happens with the Beez template? Then it would be related to your template.
Please Log in or Create an account to join the conversation.
- Pamela Besteder
- Topic Author
- Offline
- Senior Member
Less
More
- Posts: 48
- Thank you received: 0
05 Sep 2014 03:40 #4836
by Pamela Besteder
Replied by Pamela Besteder on topic Speaker names not visible on iphone
Thank you....
The only plugins, etc I have is for these: Artimagecycle and FileUpload
Should these be altered somehow?
The only plugins, etc I have is for these: Artimagecycle and FileUpload
Should these be altered somehow?
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
05 Sep 2014 08:00 #4837
by Thomas Hunziker
Replied by Thomas Hunziker on topic Speaker names not visible on iphone
You can try disabling them and see if it solves the issue.
You can also try disabling modules and see if any of those causes the issue.
Other than that I would need the URL to see myself what could be the source.
You can also try disabling modules and see if any of those causes the issue.
Other than that I would need the URL to see myself what could be the source.
Please Log in or Create an account to join the conversation.
- Pamela Besteder
- Topic Author
- Offline
- Senior Member
Less
More
- Posts: 48
- Thank you received: 0
05 Sep 2014 18:12 #4838
by Pamela Besteder
Replied by Pamela Besteder on topic Speaker names not visible on iphone
Duh...yeah...I guess knowing my URL would help!
www.Perryhrbc.org
If you need the admin login...I'd be happy to send it to you.
Pam
www.Perryhrbc.org
If you need the admin login...I'd be happy to send it to you.
Pam
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
05 Sep 2014 19:58 #4839
by Thomas Hunziker
Replied by Thomas Hunziker on topic Speaker names not visible on iphone
The problem is this CSS rule in your template:
It sets a fixed position for any container with the class "modal". This position is in the top left corner.
If you can remove that rule, try that.
Otherwise you can add an override like this:
Code:
/*@media all and (max-width:767px)*/
.modal {
position: fixed;
top: 20px;
left: 20px;
right: 20px;
width: auto;
margin: 0;
}
If you can remove that rule, try that.
Otherwise you can add an override like this:
Code:
/*@media all and (max-width:767px)*/
.modal {
position: static;
}
Please Log in or Create an account to join the conversation.
Time to create page: 0.116 seconds