Okay
  Public Ticket #2557312
Demo Font for Munio?
Closed

Comments

  • Xavier started the conversation

    Hi Support! I noticed that the main heading font 'Poppins' from the Munio demo does not appear the same way in my installed version. It only appears correctly when the titles are animating, then changes. It's still Poppins, but in the demo it looks as though it's stylized and widened/shortened. I can't find the css that makes it look like that, and I'd like my version to look like the demo.

    Can you let me know what to put in the css to achieve that result?

    Attachments: See from the demo 'Iceland' and from my installed version 'Red Bull'. My version loses the stylization.

  • Xavier replied

    Also... the portfolio hero titles, which are normally center aligned, become left aligned if the title is more than one line long. (see images attached) I have some long titles on some pages and they need to stay center aligned.

    Can you give me some CSS to solve this issue?

  •  1,802
    Support replied

    Hello Xavier,

    1. Make sure you have the 'Stretch Titles' option in customizer -> general settings set to on

    https://prnt.sc/utd49t

    2.if you can send us the url of the page containing the portfolio item 'Demi Lovato ... ' so we can inspect it

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Xavier replied

    Thank you! Here's the page with the alignment issue + the space character which are in the caption title get removed:

    http://robertl41.sg-host.com/samsung/

  •   Xavier replied privately
  •  1,802
    Support replied

    Hello Xavier,

    try adding

    .hero-title div {
        display: inline-flex;
        float: none;
    }

    in customizer -> additional CSS

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Xavier replied

    I did that, thank you! It works when you load the individual page (see the first image attached) but for some reason on ajax load (coming from the homepage) the issue is still happening: no spaces, left aligned (see second image attached)

    It's also happening in the longer project titles in the thumbnails on the home page... (see the third image)

    I REALLY need this to just display centered text with spaces, no matter the context or the length of the title.

  • Xavier replied

    I fixed part of the issue on my own... The overlong item-titles no longer lose their spacing. But I'm still having a problem with the item-titles from the portfolio-mixed template aligning left. See image attached.

    This problem is really slowing down my project. Any response will be appreciated!

  •  1,802
    Support replied

    Hello you can always decrease the font size of the titles in the grid with

    @media only screen and (max-width: 1024px){

    .centered-caption .item-caption .item-title {
        font-size: 48px;
        line-height: 48px;

    }

    }

    for resolutions less than 1024px, change the value of 48px and add the code to customizer -> additional CSS

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Xavier replied

    Ok I'll try that!

    Final font issue! Just realized: the 'next project' which transforms into the title of the following project before ajax transitioning into that page on click... It temporarily shows the 'squished' or 'wide' version of the font which I had disabled in the template customizer.

    You'll see it if you scroll to the bottom of this page and click next project, the font temporarily shows as wide, then reverts to the correct, full height font.

    http://robertl41.sg-host.com/bbc/

  •  1,802
    Support replied

    Hi Xavier,

    Try adding this in Appearance > Customize > Additional CSS:

    .main-title {    

         -webkit-transform: scaleY(1)!important;     

         transform: scaleY(1)!important; 

    }

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Xavier replied

    LEGEND! Thanks.