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!
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
Hi Yigit,
Thanks that’s working. How do I adjust the padding?
Hey!
Please add following code to Quick CSS as well
a.ls-l div {
padding: 30px!important;
border-radius: 5px;
}
Best regards,
Yigit
It looks okay in desktop but mobile view it’s way off. See link: http://imgur.com/X0yPFYV
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
It’s working better now, but it has no padding on the top or bottom in mobile.