Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #1349821

    Hello

    Please can you help me with some CSS to do the following to the timeline feature:

    1. change the timeline headers to be a different font – Monserrat
    2. change the timeline icon (I have used an image here) size to be a little larger
    3. change the dashed line to be a solid line that links each icon in the timeline

    Thank you

    #1349912

    Hey sensiblekaren,

    I can’t see a Timeline element on the page you linked to, could you post a link to where we can see the actual element please?

    Best regards,
    Rikard

    #1349927

    Hey thanks for getting back so quick. I have now published the page so that you can see the timeline as it currently is and enclosed the link in private content. Thank you!

    #1349952

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    h4.av-milestone-title {
        font-family: 'Montserrat';
    }
    
    .avia-timeline .milestone_icon {
        height: 100px;
        width: 100px;
        line-height: 100px;
    }
    
    .avia-timeline-vertical .av-milestone-icon-wrap:after {
        border-left-style: solid;
    }

    Best regards,
    Rikard

    #1349960

    Thank you. I added that but it hasn’t seemed to have worked. I cleared the cache and hard refreshed?

    #1349984

    Hi,

    Please try this CSS instead:

    h4.av-milestone-title {
        font-family: 'Montserrat' !important;
    }
    
    .avia-timeline .milestone_icon {
        height: 100px !important;
        width: 100px !important;
        line-height: 100px !important;
    }
    
    .avia-timeline-vertical .av-milestone-icon-wrap:after {
        border-left-style: solid !important;
    }

    Best regards,
    Rikard

    #1350291

    Thank you have tried it but still doesn’t seem to have worked?

    #1350294

    Hi sensiblekaren,

    Try to clear out the browser cache or if you are using Chrome, try to open the page in incognito mode.
    I have checked your site and the Montserrat font is rendering correctly, I have posted a screenshot link in private content.

    Best regards,
    Nikko

    #1350297

    Arh thank you yes. Just one thing – the header needs to be bold so it matches the look of the h1 headers on the page – would it work just to add…

    h4.av-milestone-title {
    font-family: ‘Montserrat’ !important;
    font-weight: bold !important;
    }

    #1350300

    Hi sensiblekaren,

    Yes, your code is correct :)

    Best regards,
    Nikko

    #1350304

    Thank you. I have added this bold code and increased the milestone icon to be 150px

    Can’t see changes again, cleared cache and went incognito – are you seeing changes?

    .avia-timeline .milestone_icon {
    height: 150px !important;
    width: 150px !important;
    line-height: 150px !important;
    }

    #1350335

    Hi,

    Your icon code is applying on my end, please try clearing all local and server caches again to see if that helps.

    Best regards,
    Rikard

    #1350458

    Thank you. I see the icons now. When the icons are on a mobile they are now too big and cover the header – they are perfect on the desktop at 150px but on a mobile need to be their orginal size.

    Is it possilbe with the quick CSS to only apply the larger icon before the breakpoint?

    Also, the font for the headers should be blod but for somereason the page it does not look like monserrat – but they are now bold

    #1350459

    To clairfy my last sentence: Also, the font for the headers should be monserrat bold but for some reason on the page it does not look like monserrat – but they are now bold

    #1350481

    Hi,

    You can wrap you code in a media query if you only want it to apply to screes sizes above mobile:

    @media only screen and (min-width: 768px) {
    Your code goes here
    }

    Montserrat is not applying to the header, which code did you add exactly, and where?

    Best regards,
    Rikard

    #1350487

    Thank you. I added this in quick CSS:

    h4.av-milestone-title {
    font-family: ‘Montserrat’ !important;
    font-weight: bold !important;
    }

    So this for icons larger on screens above mobile

    @media only screen and (min-width: 768px) {
    .avia-timeline .milestone_icon {
    height: 150px;
    width: 150px;
    line-height: 150px;
    }}

    #1350495

    Hi,

    Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #1350594

    Thank you

    #1350606

    Hi,

    Thanks for that, I’ve fixed it for you. Please review your site.

    Best regards,
    Rikard

    #1350610

    Thank you – I really appreciate that. Great support.

    #1350612

    Hi,

    Thanks for the kind feedback :-)

    Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1350613

    Thank you no more help is required as issues are solved. Please close

    #1350639

    Hi,

    Thanks for letting us know, I’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 23 posts - 1 through 23 (of 23 total)
  • The topic ‘Header style of timeline to Monserrat, size of image icon in timeline’ is closed to new replies.