Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #322083

    Hello Support team,

    I have a question that is connected to my earlier topic #318630.

    The icon box titles have display problems when it comes to some browser window sizes.

    This code:

    @media only screen and (max-width: 480px) {
    h4.iconlist_title { font-size: 12px; }}
    

    led to a correct display on mobile phones.

    But still, in between 785 px 1010px browser-window-width letters from the end of the titles are cut off.

    I look forward to your response!

    #322224

    Hey nini_bacher!

    Thank you for using Enfold.

    Maybe this will help:

    @media only screen and (max-width: 1024px) {
    h4.iconlist_title { font-size: 13px; }}

    Cheers!
    Ismael

    #322638

    Hello Ismael,

    thank you for your response. I added the code but doesn’t solve the problem. Do you have any other suggestions?

    #322773

    Hey!

    Try with this code instead:

    @media only screen and (max-width: 1139px) {
        h4.iconlist_title { font-size: 13px ; }
    }

    Cheers!
    Josue

    #322869

    Hey Josue,

    thnak you for the new code. I implemented it and the problem stays the same: in some browser-window sizes the text is cut off.
    Is there a possibility to shift all icon boxes to the end of the page, when it is not possible to display them correctly?

    Thank you for your help!

    #323105

    Hey!

    Please try adding following code to Quick CSS as well

    @media only screen and (max-width: 990px) and (min-width: 768px) {
    .iconlist_icon.avia-font-entypo-fontello { margin-right: 2px; }
    .entry-content-wrapper li { margin-left: 0; }
    h4.iconlist_title { font-size: 11px; }}

    Best regards,
    Yigit

    #323200

    Hello Yigit,

    thank you for your reply, I added the code but still, it doesn’t work. The words are still cut off in some browser window sizes (that may be relevant when it comes to tablets).

    Do you have other suggestions?

    Thank you!

    #323312

    Hey!

    You can add this:

    @media only screen and (max-width: 990px) and (min-width: 768px) {
        .responsive .container .one.unit,
        .responsive .container .one.units,
        .responsive .container .two.units,
        .responsive .container .three.units,
        .responsive .container .four.units,
        .responsive .container .five.units,
        .responsive .container .six.units,
        .responsive .container .seven.units,
        .responsive .container .eight.units,
        .responsive .container .nine.units,
        .responsive .container .ten.units,
        .responsive .container .eleven.units,
        .responsive .container .twelve.units,
        .responsive #top #wrap_all .flex_column {
            width: 100%;
            margin-left: 0;
            margin-bottom: 20px;
        }
    }

    That will make columns collapse on 990px instead of 767px.

    Best regards,
    Josue

    #707293

    Titles in icon-boxes are getting cut off at 320px on mobile. Is there a way to reduce font-size at 320px? I’m having trouble targeting the h3 tags.

    #707597

    Hi,

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

    @media only screen and (max-width: 320px) {
    .iconbox_content_title {
      font-size:12px !important;
    }
    }

    Best regards,
    Rikard

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