New Landing How can we help? Themeforest Theme Support Neighborhood Problems with product titles and headlines

Viewing 13 posts - 16 through 28 (of 28 total)
  • #250714
    David Martin – Support
    Moderator
    Post count: 20834

    Please provide a link to the page or create a test page so we can provide with some custom CSS.

    – David.

    #250725
    goodtimesmag
    Member
    Post count: 191

    At the end of this site: http://goodtimesdeals.de/

    #250734
    David Martin – Support
    Moderator
    Post count: 20834

    What device are you using?

    Please see my iPhone 6 screenshot.

    – David.

    Attachments:
    You must be logged in to view attached files.
    #250739
    goodtimesmag
    Member
    Post count: 191

    I am using a iPhone 5s

    #250744
    David Martin – Support
    Moderator
    Post count: 20834

    Please clear your device Safari cache.

    See my emulated iPhone 5 screenshot.

    Attachments:
    You must be logged in to view attached files.
    #250747
    goodtimesmag
    Member
    Post count: 191

    I checked the site with a cleared cache, but I doesn’t look like on your emulated iPhone 5 screen.

    #250749
    David Martin – Support
    Moderator
    Post count: 20834

    Please add a screenshot of what you currently see.

    Thanks.

    #250751
    goodtimesmag
    Member
    Post count: 191

    The screenshot of the problem is still the same…

    Attachments:
    You must be logged in to view attached files.
    #250754
    David Martin – Support
    Moderator
    Post count: 20834

    Please test this custom CSS:

    
    @media only screen and (max-width: 767px) {
    .spb_text_column h1 {
    font-size: 25px;
    }
    }

    Thanks.

    #250765
    goodtimesmag
    Member
    Post count: 191

    Ok, thanks, this is not the ideal solution, but I think I can live with it.

    I have also used the following css codes to reduce the h1 in parallax and the h2 in text blocks, but the h1 code for parallax doesn’t work:

    @media only screen and (max-width: 767px) {
    .spb_text_column h1 {
    font-size: 25px;
    }
    }

    @media only screen and (max-width: 767px) {
    .spb_text_column h1 {
    font-size: 25px;
    }
    }

    @media only screen and (max-width: 767px) {
    .spb_parallax_asset h2 {
    font-size: 22px;
    }
    }

    @media only screen and (max-width: 767px) {
    .spb_parallax_asset h2 {
    font-size: 22px;
    }
    }

    #251145
    David Martin – Support
    Moderator
    Post count: 20834

    Hi,

    You don’t need a media query for each. You can combine all that into one.

    The h1 is not working as you have not added a h1 parallax selector. Your CSS posted is copy and pasted without updating the h1,h2 ect.

    Ex improved:

    @media only screen and (max-width: 767px) {
    .spb_text_column h1 {
    font-size: 25px;
    }
    .spb_text_column h2 {
    font-size: 23px;
    }
    .spb_parallax_asset h1 {
    font-size: 25px;
    }
    .spb_parallax_asset h2 {
    font-size: 22px;
    }
    }

    Thanks.

    #251150
    goodtimesmag
    Member
    Post count: 191

    Perfect, thanks!

    #251160
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Great thanks to David.
    Mohammad

Viewing 13 posts - 16 through 28 (of 28 total)

You must be logged in to reply to this topic.