Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #632478

    German
    Participant

    Hi guys,

    I’ve been trying to make the Products section of my site, which is using a Revolution slider to self-adjust its height based on the available screen’s real-estate. I was able to make it use the whole width, but I’m missing how to deal with the height part.

    1. Do you know how to solve this issue with the Revolution Slider you guys provide?

    Allow me to ask you a second question:
    In the Blog page I’m trying to find out how to make Headings displaying the text copy as-is in terms of capitalization (e.g.: “TWITTER OR FACEBOOK? BOTH? –TIPS TO DECIDE” to be displayed as “Twitter or Facebook? Both? -Tips to decide“). I tried to find an option in Customizer that would help me achieve that, but maybe I didn’t look at the right place.

    2. Is there a way to set this up?

    Thank you,
    German

    #632479

    German
    Participant
    This reply has been marked as private.
    #632554

    Christopher
    Moderator

    Hi there,

    #1 Please select ‘Auto’ from slider type section, then select ‘Auto’ layout. Please see the attachment.

    #2 Please add the following code in Customize -> Custom -> CSS :

    h2.entry-title a {
        text-transform: capitalize;
    }

    Hope it helps.

    #637620

    German
    Participant

    Sadly, this one didn’t help much.

    Moving to another major issue, the “Services” section has some flipping cards in it, and when you see them in Firefox they don’t show properly; however in other browsers they do work Ok.

    Please kindly let me know how to solve this issue.

    Best regards,
    German

    #637637

    Rue Nel
    Moderator

    Hello There,

    Upon checking your site, are are not seeing the code that will make the titles capitalize. Please put it back again in your customizer

    h2.entry-title a {
        text-transform: capitalize;
    }

    To fix the transparency in firefox,

    .x-card-outer .x-face-outer.front {
        opacity: 1 !important;
        transition: opacity 200ms linear;
    }
    
    .x-card-outer.flipped .x-face-outer.front {
        opacity: 0 !important;
        transition: opacity 200ms linear;
    }

    Please let us know how it goes.