-
AuthorPosts
-
December 8, 2016 at 7:58 pm #722147
Not sure what I am missing. I have done it before.
Ca’t seem to increase the font size for the slider on the homepage of my site.I have a class .JS assigned.
I removed the css I had under the mobile media queries.
Thanks!December 8, 2016 at 11:24 pm #722239Hey Justin,
I checked your site and it seems to messed up, and also see mixed content and Uncaught SyntaxError: Unexpected token < error. Try to re-install wordpress as well as Enfold, if there are caching plugins please disable it when updating, Hope this helps.
Best regards,
Nikko- This reply was modified 7 years, 11 months ago by Nikko.
December 8, 2016 at 11:28 pm #722244Doublecheck again for me please
That’s WP Rocket’s whacky pkugin for you.
I just deactivated it. Thank you.December 12, 2016 at 3:31 am #722897Doesn’t seem to work on mobile…
.JS h2.avia-caption-title { font-size:42px!important;}
December 12, 2016 at 5:50 pm #723254Hi,
Your code is working fine however you are targetting the same element multiple times with different CSS codes. Please make sure to wrap all of them in media queries to apply the codes on certain screen sizes.
If you would like us to look into it for you, please post WP admin logins here privately and elaborate on the changes once again so we can make sure that we are on the same page.
Best regards,
YigitDecember 12, 2016 at 6:28 pm #723283Yigit.
It’s set for IPad which works.
/* Portrait and Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (-webkit-min-device-pixel-ratio: 2) {It’s also set for the iPhone 6 and 5s which does not work.
/* Portrait and Landscape */
@media only screen
and (min-device-width: 320px)
and (max-device-width: 568px)
and (-webkit-min-device-pixel-ratio: 2) {/* Portrait and Landscape */
@media only screen
and (min-device-width: 375px)
and (max-device-width: 667px)
and (-webkit-min-device-pixel-ratio: 2) {The Caption title is still tiny.
Although the ‘small business’ line does render.December 14, 2016 at 1:13 pm #724243Hi,
in your media queries remove this part:
and (-webkit-min-device-pixel-ratio: 2)
as well as use this:
and (min-width: 375px)
instead of:
and (min-<strong>device</strong>-width: 375px)
You could also add this:
and (orientation: landscape)
Clear browser cache and hard refresh a few times.
Best regards,
AndyDecember 15, 2016 at 2:22 am #724715Thaknms Andy…no change.
All I would like to do it triple the size of the text here on mobile…
Not sure what I am missing….Thanks!
December 16, 2016 at 12:12 pm #725268Hi,
you’re using this code:
.responsive #top .slideshow_caption h2 { font-size: 20px !important; }
Remove it, or adjust it as needed to e.g.:
@media only screen and (max-width: 767px) { .responsive #top .slideshow_caption h2 { font-size: 40px !important; }}
Best regards,
AndyDecember 16, 2016 at 4:05 pm #725396Hi Andy, I am not seeing anything like that defined in my style sheet
December 19, 2016 at 12:51 pm #725994Hi,
I can’t tell you in which file you’ve got this code, but I see it inside your source code, to it must be somewhere.
However, does the new code work for you?Best regards,
AndyDecember 20, 2016 at 4:35 pm #726639Doesn’t work…
December 20, 2016 at 5:56 pm #726701Hi,
I put the code I’ve provided to you into you Quick CSS field and then it worked well: http://imgur.com/a/RkEbz
Please clear browser cache and hard refresh a few times.
Best regards,
AndyDecember 20, 2016 at 6:05 pm #726707Weird. How about removing it from Quck Field and adding it to the child-theme’s CSS. Tell me what happens then?
December 21, 2016 at 8:42 pm #727273Hi,
I added it into the bottom of your child theme and it’s working fine too: http://i.imgur.com/JgvhXEL.png
Please clear browser cache and hard refresh a few times. Also check on another device.
Best regards,
Andy -
AuthorPosts
- You must be logged in to reply to this topic.