Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #885608

    hi guys

    if you go to url in private content, you will see the slide show caption that comes in on a mobile device is of font size 20px (this is avia-caption-title)

    this is created by this css

    @media only screen and (max-width: 479px)
    .responsive #top .slideshow_caption h2 {
    font-size: 20px !important;
    }

    the above css appears to be loading from shortcodes.css located in static_main/css/ directory

    how ever it is preventing the font size i have selected in the slider caption options of 38 from being used
    what am i best doing in this situation to achieve my desired font size?

    • This topic was modified 6 years, 11 months ago by codecreative.
    #885706

    Hey codecreative,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (max-width: 479px) {
      .responsive #top #full_slider_1 .slideshow_caption h2 {
          font-size: 38px !important;
      }
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.