Okay
  Public Ticket #1579915
Footer text style
Closed

Comments

  •  1
    Matt Fischer started the conversation

    Is there any way to style the text within the footer to match the comp supplied to me? I only see a single input for footer copyright.

    Need to control the following:

    Weight

    Color

    Letterspacing 


    thanks in advance

  •  3,068
    Andrew replied

    Hi Matt,

    Sorry for the late reply.

    You can use this CSS to style that bit of text at the footer:

    #footer-outer #copyright p {
        line-height: 22px;
        letter-spacing:0px;
        color:red !important;
        font-weight:bold;
    }
    

    add the CSS to salient \ general settings - css script related - custom css code.

    Adjust it to what you want.
    Cheers.

  •  1
    Matt Fischer replied

    Thanks Andrew!

    Is there a way to add different colors within the single line of text like the supplied jpg shows?

  •  3,068
    Andrew replied

    Hi Matt,

    No that is not possible.

    You could try and use span tags inside the text you add in that option. Then add CSS classes to those span tags that will style the text with a color you want.

    Hope you can implement that.