Re: [css-d] Removing text

2012-07-10 Thread Tom Livingston
Yes. I was just giving an example. The op should target the right h2. Sent from iOS 5 On Jul 10, 2012, at 1:01 AM, Jukka K. Korpela jkorp...@cs.tut.fi wrote: 2012-07-10 1:20, Mark Weiss wrote: The code below is in our Moodle site. the h2Is this your first time here?/h2 somehow is placed

Re: [css-d] Removing text

2012-07-10 Thread Mark Weiss
Jukka K. Korpela had it right for us. Thank you so much. What ended up working perfectly was: .signuppanel h2:first-child { display: none; } Thank you again. Mark __ css-discuss [css-d@lists.css-discuss.org]

[css-d] Removing text

2012-07-09 Thread Mark Weiss
The code below is in our Moodle site. the h2Is this your first time here?/h2 somehow is placed on the page automatically. I need to know how to remove it using HTML. Is this possible? Thanks div class=signuppanel h2Is this your first time here?/h2 div class=subcontent div

Re: [css-d] Removing text

2012-07-09 Thread Tom Livingston
CSS: h2: display:none; maybe? Sent from iOS 5 On Jul 9, 2012, at 6:20 PM, Mark Weiss dadwe...@mac.com wrote: The code below is in our Moodle site. the h2Is this your first time here?/h2 somehow is placed on the page automatically. I need to know how to remove it using HTML. Is this

Re: [css-d] Removing text

2012-07-09 Thread Jukka K. Korpela
2012-07-10 1:20, Mark Weiss wrote: The code below is in our Moodle site. the h2Is this your first time here?/h2 somehow is placed on the page automatically. I need to know how to remove it using HTML. It is generally much better to find out and fix the reason of a problem than to hide its