Hi,
I love this template!
We have an issue though - on the smart phone version of this template, the sidecol-a and sidecol-b modules display before the content of the page.
We would like to display these modules after the content of the page.
How do we achieve this change?
- ecweb
- Commercial Templates
- Friday, 20 May 2016
- Subscribe via email
Hello
To amend try adding the following to the Custom CSS field of your templates parameters...
Ciarán
To amend try adding the following to the Custom CSS field of your templates parameters...
@media only screen and (max-width: 767px) {
#main {
display: flex;
flex-direction: column;
}
#sidecol_a, #sidecol_b {
order: 1;
}
}
Ciarán
- more than a month ago
- Commercial Templates
- # 1
It seems to work well except in Androids default 'browser' app - there it appears as seen in this image: http://easyjoomla.com.au/images/androiddefaultbrowser.jpg
Can you help with this as well?
The web site is http://www.lukesantennas.com.au
Can you help with this as well?
The web site is http://www.lukesantennas.com.au
- more than a month ago
- Commercial Templates
- # 3
Hello
May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and we will examine this issue further. For our reference please paste a link to this post in your email.
Ciarán
May I suggest sending temporary administration access to your Joomla installation to info@joomla51.com and we will examine this issue further. For our reference please paste a link to this post in your email.
Ciarán
- more than a month ago
- Commercial Templates
- # 4
Thank you
I have tried an alternative sorting solution using flex which will hopefully work better for you across all devices...
Ciarán
I have tried an alternative sorting solution using flex which will hopefully work better for you across all devices...
@media only screen and (max-width: 767px) {
#main {
display: flex;
flex-direction: column;
}
#sidecol_a, #sidecol_b {
order: 1;
}
}
Ciarán
- more than a month ago
- Commercial Templates
- # 5
Thanks for your help so far Ciaran,
Isn't that the same code we tried earlier in this post?
I have now refreshed the cache and tested using the default 'browser' app in Android and the issue remains with the contact form overlapping the footer.
Isn't that the same code we tried earlier in this post?
I have now refreshed the cache and tested using the default 'browser' app in Android and the issue remains with the contact form overlapping the footer.
- more than a month ago
- Commercial Templates
- # 6
Ah so it is. Had you already tried the following using the table method?...
Ciarán
@media only screen and (max-width: 767px) {
#main {
display:table;
}
#content_remainder {
display: table-row-group;
float: none;
}
#sidecol_a, #sidecol_b {
display: table-footer-group;
float: none;
}
}
Ciarán
- more than a month ago
- Commercial Templates
- # 7
- Page :
- 1
There are no replies made for this post yet.
Be one of the first to reply to this post!
Be one of the first to reply to this post!
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here. Register Here »