Tagged: ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #309623

    Hello!

    I’m trying to link the “Let’s Talk” button on my slide as an anchor to the let’s talk section further down the page. When I add the anchor to the link section of the layer, the font disappears and only reappears when you place your cursor over it. The link itself works fine.

    You’ll see the empty orange box and then see the font when you’re cursor goes over it. It’s also the wrong font color. Please help!

    #309885

    Hi thebitcoinguy!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    a.ls-l div {
    color: white;
    }

    Regards,
    Yigit

    #309937

    Hi Yigit,

    Thanks that’s working. How do I adjust the padding?

    #309940

    Hey!

    Please add following code to Quick CSS as well

    a.ls-l div {
    padding: 30px!important;
    border-radius: 5px;
    }

    Best regards,
    Yigit

    #309972

    It looks okay in desktop but mobile view it’s way off. See link: http://imgur.com/X0yPFYV

    #309988

    Hi!

    You can add media queries to your code to apply it only on certain screensizes as following

    @media only screen and (min-width: 768px) {
    a.ls-l div {
    padding: 30px!important;
    border-radius: 5px;
    }}

    Cheers!
    Yigit

    #309990

    It’s working better now, but it has no padding on the top or bottom in mobile.

    #309997

    Hey!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 768px) {
    a.ls-l div {
    padding: 10px!important;
    border-radius: 5px;
    }}

    Best regards,
    Yigit

    • This reply was modified 10 years, 2 months ago by Yigit.
Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.