Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #919305

    Hi
    I am using the full screen slider on my home page and its great except I am having trouble with the captions. The 1st heading is great, but the subheading is really small and does not respond to the font size I choose within the layout builder. So, I added some CSS to make it 25px and I am happy.

    Except when I look at it on the phone, now the subheading is actually bigger than the heading. I really want the heading to be a little bigger and the subheading to be smaller. Can you give me the CSS to do this just for the phone?

    http://www.roadies.coach

    Thanks!

    #919454

    Hey ginnywills,

    Please try the following in Quick CSS under Enfold->General Styling:

    @media only screen and (max-width: 767px) {
    .home .avia-caption-content p {
      font-size:16px !important;
    }
    }

    Best regards,
    Rikard

    #919719

    That worked. Thanks!

    Now, how do I make the main heading slightly bigger on the phone? I tried the following but it doesn’t do anything:

    @media only screen and (max-width: 767px) {
    .avia-caption-title {
    font-size:26px !important;
    }
    }

    #919952

    Hi,

    That should work.
    I have loaded your web site and I can not see the code there – have you removed it?

    Best regards,
    Basilis

    #919971

    I added the CSS code earlier but didn’t really see any effect. My biggest issue is I want the headline bigger – but your code is for “p” which confuses me?

    #920117

    Hi,

    Please try this instead:

    @media only screen and (max-width: 767px) {
      .slideshow_align_caption h2.avia-caption-title {
        font-size:26px !important;
      }
    }

    Best regards,
    Rikard

    #920451

    Hey – sorry that still did not work.

    Any other ideas?

    #920660

    Hi,

    Please try this instead:

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

    Best regards,
    Rikard

    #921968

    Hey – sorry but that is not working either. Got anything else?

    #922083

    Hi,

    It looks like you have this in Quick CSS which is the CSS applying to that element:

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

    Please change it or remove it.

    Best regards,
    Rikard

    #922376

    That is the CSS code that you told me to put in. I changed it from 26px to 36px so I would be able to see the difference but there is none.
    Just to reiterate, I am trying to make the headline bigger on the home page slideshow on the phone.

    Thanks.

    #922729

    Hi,

    This is now the active CSS:

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

    26 pixels is what you wanted, right? If not then please increase the value.

    Best regards,
    Rikard

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