Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #884116

    Hi

    The font size in the masonry has changed, so that the portfolio items titles are not shown completely at the 6 portfolio pages. How can I change that?

    Best regards Ditte

    #884289

    Hey dittefrandsen,

    I’m not sure what the login is, is that the user name or password? Either way, something seems to be missing.

    Best regards,
    Rikard

    #884441

    Hi Rikard

    Sorry. Here is the missing login information.

    Best regards, Ditte

    #884456

    Hi,
    I’m not sure if I’m looking at the correct element, please see screenshot in Private Content area.
    Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    #884678

    Hi Mike

    Thanks. You are looking at the right element. But at this screen shot it looks ok, probably because it is the masonry at the front page and you view it on a pc, where there is room for the fonts in that size.

    It is happening at all the pages at the site, at all but the front page it also happens on the pc.

    Best regards

    #884935

    Hi Ditte,

    Please try this in Quick CSS to make the font size smaller on smaller screens:

    @media only screen and (max-width: 1130px) {
    .av-masonry-entry .av-masonry-entry-title {
        font-size: 12px;
    }
    }

    Best regards,
    Rikard

    #895707

    Hi Rikard

    Thanks! It still happens on tablet in vertikal position. How can I fix it.

    Best regards, Ditte

    #895944

    Hi,
    Please replace with:

    @media only screen and (min-width: 481px) and (max-width: 1130px) {
    .av-masonry-entry .av-masonry-entry-title {
        font-size: 10px!important;
    }
    .av-masonry-entry .av-inner-masonry-content {
        padding: 10px!important; 
    }
    }

    Best regards,
    Mike

    #902211

    Hi Mike.

    I tried on one of the pages (see private), but it did not work. How to fix?

    Best regarde, Ditte

    #902467

    Hi,
    You had the same code for 12px in twice, I removed one and changed the other to 9px. Please clear your browser cache and check.

    Best regards,
    Mike

    #905580

    Hi Mike

    Thanks so much. It works perfectly on tablets now. But on phones it is very small with lots of space left. How to make larger on phones keeping the size on tablets?

    Best regards, Ditte

    #905612

    Hi,
    In your custom css, it looks like your code is this:

    @media only screen and (max-width: 1130px) {
    .av-masonry-entry .av-masonry-entry-title {
        font-size: 9px!important; 
    }
    }

    Please try changing to:

    
    @media only screen and (min-width: 766px) and (max-width: 1130px) {
    .av-masonry-entry .av-masonry-entry-title {
        font-size: 9px!important; 
    }
    }

    Please note that you are adding “and (min-width: 766px)” to your code, so it will stay the same for tablets and allow the default font size show for mobile.

    Best regards,
    Mike

    #905615

    Hi Mike

    Thanks so much! Now it looks perfect on phones an on the portfolio pages on tablet. There is another masonry at the front page, that I would like to be excluded from the smaller letters, is that possible?

    Best Regards, Ditte

    #905946

    Hi,
    Sorry I don’t see another masonry on the homepage. Can you take a screenshot of it?

    Best regards,
    Mike

    #906233
    This reply has been marked as private.
    #906302

    Hi,
    Thank you for that. I have changed your custom css so that it works different on the homepage masonry and the portfolio page masonry, this is what your code now looks like:

    @media only screen and (min-width: 766px) and (max-width: 1023px) {
    #top.home .av-masonry-entry .av-masonry-entry-title {
        font-size: 9px!important; 
    }
    }
    @media only screen and (min-width: 766px) and (max-width: 1130px) {
    #top.portfolio-template-default .av-masonry-entry .av-masonry-entry-title {
        font-size: 9px!important; 
    }
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    #1081945

    Please close this 😊 Thanks

    #1082061

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 18 posts - 1 through 18 (of 18 total)
  • The topic ‘Masonry portfolio font size’ is closed to new replies.