NetTalk Central

Author Topic: h2 Header styling - trying to apply color  (Read 287 times)

rjolda

  • Sr. Member
  • ****
  • Posts: 327
    • View Profile
    • Email
h2 Header styling - trying to apply color
« on: November 20, 2024, 04:43:37 PM »
Hi,
I am trying to apply red color to the h2 header  - I tried in-line styling which did not work.  I want the header h2 line to always be red at the top of the page.
Anyone done this and willing to share?
Thanks,
Ron

Vinnie

  • Full Member
  • ***
  • Posts: 183
    • View Profile
    • Email
Re: h2 Header styling - trying to apply color
« Reply #1 on: Today at 12:14:40 AM »

'<h2><span style="color: red;">This is a test Heading which needs to be red.</span></h2>'

If you are adding this  to a NetWeb Form as the heading you need to check

Allow XHTML in Heading

rjolda

  • Sr. Member
  • ****
  • Posts: 327
    • View Profile
    • Email
Re: h2 Header styling - trying to apply color
« Reply #2 on: Today at 03:23:04 AM »
HI Vinnie,
Thanks  - I was missing the span  ... /span part of it. 
Got it working.
Ron

Jane

  • Sr. Member
  • ****
  • Posts: 372
  • Expert on nothing with opinions on everything.
    • View Profile
    • Email
Re: h2 Header styling - trying to apply color
« Reply #3 on: Today at 10:12:38 AM »
Of course, if you want ALL h2 elements in your app to be red it's easiest to put a line into your custom.css file


Code: [Select]
h2{color:red;}
Remember that it doesn't take a period or hash mark before the h2 designation.