Reply To: Formating slider excerpt

Homepage Community Forums Epik Theme Support Formating slider excerpt Reply To: Formating slider excerpt

#13859
Wes
Moderator

    “Is there a way to NOT remove all the formatting OR a way to add it in, word by word?”

    Unfortunately there isn’t a way to do that with this particular slider due to it’s limitations. But you can add some css to adjust how everything looks as a whole. Since this particular slider doesn’t have that many options, it’s not yet possible to control the format of each word/paragraph of the slider text separately.

    Looking at your code above I can see that you left the px part out of the font-size. It should look like this –

    .slide-excerpt {
        margin: 10px 65px 60px !important;
        width: 22% !important;
        opacity: .5 !important;
        font-size: 28px !important;}
    
    .slide-excerpt-border p {
        font-size: 28px !important;
        font-weight: 900 !important;
        line-height: 1.5;
        font-color: #000000 !important;
    }

    You also have font-color which should be color instead –

    color: #000000 !important;

    Making those adjustments should fix those issues.