-
-
Hi, we have many problems with the responsiveness of our sliders
1 – Is there a possibility for the “Prev” and “Next” button to appear smaller on mobile. (And is there a possibility to change their name, we would want it in french…)
2 – On mobile, when we start scrolling, the slider becomes shorter, and there is a black space between the slider and our first box
3 – The text size appears perfectly on desktop version, but appears way too small or way too big on mobile. And with the slider becoming shorter as we scroll down, we lose text of the slider that’s hidden under the menu bar…
4 – We also placed an image on our first slider, but the image is changing size on mobile and appears all shrunk.
Thank you.
-
Hello,
1-Yes, you can change them with some custom css code. Do you want to change the name only for the responsive layout or for all layouts?
It is not possible for only one specific layout.
You can translate theme text using the .PO/.MO files.2-3-4-Can i please see a link where is this running? The images are configured to resize according to the layout width. You can edit this with css too.
Let us know.Best regards!
-
Hi sorry for the delay.
1 – I want to change the name for every layout
I would like to have the right css codes so my image doesn’t resize like that and so the font of the sliders are responsive
-
Hello,
1-You can translate the “PREV” and “NEXT” in the .PO/.MO files. So you won’t need to keep making the changes in every theme update.
2-Please add this code into your custom css box:
@media (max-width: 480px){ .codeless_slider_swiper { min-height: 300px !important;} .codeless_slider .swiper-slide { min-height: 300px !important;} .codeless_slider_wrapper { min-height: 300px !important;} }
2-To change the slider’s button fonts, please add this code:
@media (max-width: 480px){ .codeless_slider .swiper-slide .buttons a { font-size: 9px;} .codeless_slider .swiper-slide .content h1 { font-size: 16px !important; line-height: 26px !important; }}
Edit the values to your wish.
3-I see the images are displaying as they should (screenshot). What do you need to change here?
Let us know.Best regards!
-
Thank you. My biggest problem right now is with the parallax images on my Menu (bleucitron.ca/menu) and my homepage. On mobile, the parallax becomes only a fixed normal photo (that’s what I want). But on iPad, everything’s fine when the iPad is vertical, but when its horizontal, the images are in parallax and are all blurred and resized. I want it to show just the images without parallax effect, like it appears on every other mobile devices and on the iPad with the vertical view. I want the parallax to be active only on desktop view
-
Hello,
Sorry for the late reply.
Did you manage to fix your issue? I see the page images are displaying ok in both portrait and landscape view (screenshot).
Let us know.Best regards!
-
No didn’t fix it. It appears ok on mobile phones but not on larger screens like iPads
-
Hello,
The screenshot above is of an ipad, not mobile. Can you send us a screenshot of what are you viewing? So we can understand better.
Best regards!
-
Here is the screenshot . It appears like that on iPad (landscape view). It appears correctly on the portrait view.
-
Hello,
Please add this code into your custom cs sbox:
@media (max-width: 1024px){ .wpb_row .section-style.parallax_section{ background-size: contain !important; -webkit-background-size: contain !important; }}
Let us know. (Since i don’t see the bug from my side, if the issue persists, send screenshot of result so we can understand what to change further).
Best regards!
-
-
Hello,
Please send us your ftp credentials. We need to check the js files.
Best regards!
-
Hi Mihaila,
I am having the same issue as heliummrkweb with my Codeless Slides. When my site is viewed online (www.kinled.com/beta/), no issues but when i start reducing the size of the browser window or view on an iphone, there is a light grey bar of colour overlapping the images and button from slider.
I tried adding the css from your reply above and instead of displaying a light grey bar of colour it displays a dark grey bar.
-
Hello,
Please go to file js\main.js and find this line:
linkElement : 'a:not([target="_blank"]):not([href^=#]):not(.lightbox-gallery):not(.zoom):not(.prettyphoto)' 2026 });
Replace with this:
linkElement : 'a:not([target="_blank"]):not([href^="#"]):not(.lightbox-gallery):not(.zoom):not(.prettyphoto)' 2026 });
Then add this code into your custom css box:
@media (max-width: 480px){ .slider#slider-fullwidth { min-height: 244px !important; }} @media (max-width: 767px){ .codeless_slider .swiper-slide { height: 300px !important; }}
Let us know.
Best regards!
-
-
-
Hello heliummrkweb,
I have added the lines below into style.css file, anyway i recommend you to add this lines into Custom css Box into the theme Options.If you will make a theme update in the future the changes can be lost, so its better to save this lines in Custom Css Box
@media (min-width: 768px){ .section-style.parallax_section{ background-size: contain !important; -webkit-background-size: cover !important; background-position: center !important; } }
If you need further help let us know.
Regards!
-
I want it to be just a fixed picture like it appears on iphones and on iPad portrait view. Right now, it’s a parallax on the landscape view, that’s not what I want.
-
-
Hello,
Sorry for the late reply. Please add to the list of attributes above this line too:
background-attachment: inherit !important;
So the block of code will be like this:@media (min-width: 768px){ .section-style.parallax_section{ background-size: contain !important; -webkit-background-size: cover !important; background-position: center !important; background-attachment: inherit !important; } }
Let us know.
Best regards!
-
I want to keep my parallax effect on desktop, but not on mobile. With that code, I no longer have parallax on desktop too….
-
Hello,
Please edit code to this:
@media (min-width: 768px) and (max-width: 1024px){ .section-style.parallax_section{ background-size: contain !important; -webkit-background-size: cover !important; background-position: center !important; background-attachment: inherit !important; } }
Best regards!
-
I had same issue with slider for
<span style=”color: #4b4d4d; font-family: Raleway; font-size: 14px;”>3 – The text size appears perfectly on desktop version, but appears way too small or way too big on mobile. And with the slider becoming shorter as we scroll down, we lose text of the slider that’s hidden under the menu bar…</span>
And this helped me.
@media (max-width: 480px){
.codeless-slider-container { height:430px!important;}
.codeless_slider_swiper { min-height: 430px !important;}
.codeless_slider .swiper-slide { min-height: 430px !important;}
.codeless_slider_wrapper { min-height: 430px !important;} }By adding one more class .codeless-slider-container { height:430px!important;}
Hope this helps.
-
-
You must be logged in to reply to this topic.