Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #648452

    Hi,

    Ive been using <.strong.> </.strong.> exclusively to apply a different color to my text

    How can i create additional tags called <blue> <orange> etc in order to apply other colors to my special headings and text block ?

    #648513

    Hey kilimats,

    Please use css class to create custom styles.

    Example of html

    <span class="blue">  your text </span>
    <span class="orange">  your text </span>
    <span class="yellow"> your text  </span>

    Add this to your custom css

    .blue{	color:blue; }
    .orange{ color:orange; }
    .yellow{ color:blue; }

    Best regards,
    Vinay

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