custome " read more"

Posted in: Newspaper
Post count: 9

HI,

I would like to custom the call to action ” read more ” CTA

I found this > https://forum.tagdiv.com/increase-users-engagement-add-custom-buttons-posts/ but it’s not use-full for my problem.

Could you help me ?

Post count: 20685

Hi,

If you want to customize the “Read more” you just have to change it’s translation in Theme Panel->Translations here – http://screencast.com/t/qDXOaoQ6oR

Thanks

Post count: 9

Hi Simion,

Thanks for you help !

I tried to change the text and the design of the call to action usig this : [button color=”sky” size=”small” type=”_blank” target=”” link=””]découvrir[/button] but it’s not working.

Do you know how to manage this ?

Regards,

Nahuel

Post count: 20685

Hi,

The call to action for “Read more” comes from the td_module_18 – http://screencast.com/t/t4gfyGBCmTRa but it would be dificult to replace it with a custom button. You can try a different way to customize that link using css, to make it look like a button (enter it in Theme Panel->Custom Css)

.td_module_18 .td-read-more a {
background-color: lightblue!important;
color: white;
border: 1px solid transparent;
border-radius: 25px;
transition: all .5s;
padding: 5px 10px;
font-size: 12px;
font-weight: 600;
line-height: 1.5;
}

It looks like this – http://screencast.com/t/RRiuvhmLbw

You can edit the colors as you like to make it look the way you want
Also if you want to hide the arrow next to the text u can use this code

.td_module_18 .td-read-more a i {
display: none;
}

Thanks

Post count: 9

Hi,

Perfect! thank you for your help .

Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.