Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1019528

    Hi!
    I’ve almost finished a new website…i had some problems with text headings going offscreen in some smartphone devices.
    Problem solved adding some custom css as you mentioned in other threads.

    @media only screen and (max-width: 480px) {
    .av-special-heading-tag {
      font-size: 30px !important;
    }}

    The problem persist in some tablets, especially ipads, where the titles goes one over the other (homepage: “rivestimento interni” goes over “rivestimento esterni” in vertical view, and cuts in horizontal view).
    http://www.responsinator.com/?url=nuovosito.borsellisrl.it%2Fsito2018%2F

    What can i do?

    Thanks.

    #1019936

    Hey original52,

    Well the code works on screens up to 480px, you should change it to work on screens up to 990px, like this

    
    @media only screen and (max-width: 990px) {
    .av-special-heading-tag {
      font-size: 30px !important;
    }}
    

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1022041

    Thank you Victoria.

    #1022332

    Hi original52,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

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