In the module position SideCol 2a and 2b I have displayed a small module next to the content. when I choose the mobile view, the sideCol position doesn't move under the content, but stays next to it. I can't find any setting how to do this.
What else is important:
- Template Kinvara installed with sample files
- Template styles "Homepage" and "Default" both tested
- Setting layout option: CSS / SCS /CSS (width 25% each) tried everything
- The original menu entry of your template "Layouts" doesn't work either! (currently displayed on my website)
- It doesn't work for the sidCol1 position either.
- Setting: "Sidecolum Positioning" : Before or after Component, tried everything.
Now I don't know...
Link: My menu item "Home" (Hompage Styles):
http://joomla4.ferienwohnung-deubach.de/index.php/de/
Link My menu item "Holiday apartment" :
http://joomla4.ferienwohnung-deubach.de/index.php/de/unsere-ferienwohnung/das-ist-die-wohnung
Link: Your original menu link: "Layouts":
http://joomla4.ferienwohnung-deubach.de/index.php/de/layout-options/content-sidecol
I have sent the access data to the website. if they are needed (info@joomla51.com)
- eumel7
- Commercial Templates
- Wednesday, 07 December 2022
- Subscribe via email
References
Hi eumel7
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
Does this resolve the issue?
Ciaran
To amend try adding the following to the Custom CSS field of your templates parameters (Extensions -> Templates -> [YourTemplateStyle] -> Custom CSS)....
@media only screen and (max-width: 767px) {
#container_main #main {
flex-direction: column;
}
}
Does this resolve the issue?
Ciaran
- more than a month ago
- Commercial Templates
- # 1
First of all thanks for your answer.
The code works very well in phone portrait mode.
It looks a little weird in Phone (L/scape) mode...
(The code was entered in the general settings of the custom css not in the custom css of the responsive options)
The code works very well in phone portrait mode.
It looks a little weird in Phone (L/scape) mode...
(The code was entered in the general settings of the custom css not in the custom css of the responsive options)
- more than a month ago
- Commercial Templates
- # 2
Hello
Would only applying a single column to the phone portrait view give you the desired result? If yes then can try replacing your CSS with the following...
Ciaran
Would only applying a single column to the phone portrait view give you the desired result? If yes then can try replacing your CSS with the following...
@media only screen and (max-width: 440px) {
#container_main #main {
flex-direction: column;
}
}
Ciaran
- more than a month ago
- Commercial Templates
- # 3
Thanks for the info again.
I don't quite understand what that means. Yes I only need one column next to the content. It doesn't work that well with the 440px.
I saw that the calendar had a fixed width in pixels, I changed it to 100% and I can live with it in (L/scape) mode now.
I have now taken the 767 px width in the custom css code
Only the module title is now truncated in (L/scape) mode
see image
I don't quite understand what that means. Yes I only need one column next to the content. It doesn't work that well with the 440px.
I saw that the calendar had a fixed width in pixels, I changed it to 100% and I can live with it in (L/scape) mode now.
I have now taken the 767 px width in the custom css code
Only the module title is now truncated in (L/scape) mode
see image
- more than a month ago
- Commercial Templates
- # 4
Thank you for detailing. I now realise your issue.
Probably the easiest solution would be to increase the media query size so the single column would be displayed on landscape module. I am not sure if this would be suitable?
Eg.
Ciaran
Probably the easiest solution would be to increase the media query size so the single column would be displayed on landscape module. I am not sure if this would be suitable?
Eg.
@media only screen and (max-width: 1024px) {
#container_main #main {
flex-direction: column;
}
}
Ciaran
- more than a month ago
- Commercial Templates
- # 5
Thanks.
I now have the code below in the respective template styles:
Added "Responsive Option" -> Phone (L/scape) Custom CSS.
Also set the SideCol-B width (%) to "36" under: "Layout Option". It fits my cell phones there.
I now have the code below in the respective template styles:
Added "Responsive Option" -> Phone (L/scape) Custom CSS.
Also set the SideCol-B width (%) to "36" under: "Layout Option". It fits my cell phones there.
- more than a month ago
- Commercial Templates
- # 6
Hello
Note that as the above CSS is already wrapped in a media query, you can add this to the Custom CSS field in the Custom CSS tab.
Ciaran
Note that as the above CSS is already wrapped in a media query, you can add this to the Custom CSS field in the Custom CSS tab.
Ciaran
- more than a month ago
- Commercial Templates
- # 7
No, unfortunately not.
There are also differences in the display, depending on the size of the screen. I think I can live with that if I leave it in the responsive options.
I don't know if there will be errors in the future.
There are also differences in the display, depending on the size of the screen. I think I can live with that if I leave it in the responsive options.
I don't know if there will be errors in the future.
- more than a month ago
- Commercial Templates
- # 8
- 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 »