Hello,
I set up a custom weblog field for my client that is very generic. It looks something like this. Now keep in mind, I’m showing you both the Field Label(Field_Name):
Header(Header)
Subhead(Subhead)
Copy(Copy)
Header 2(Header_2)
Subhead 2(Subhead_2)
Copy 2(Copy_2)
Header 3(Header_3)
Subhead 3(Subhead_3)
Copy 3(Copy_3)
This continues through “” 15(”“_15), based off the longest entry the client had at the time.
This is how they look in the templates:
<h1>{Header}</h1>
<h2>{Subhead}</h2>
<p>{Copy}</p>
<p><h1>{Header_2}</h1></p><h2>{Subhead_2}</h2>
<p>{Copy_2}</p>
<p><h1>{Header_3}</h1></p><h2>{Subhead_3}</h2>
<p>{Copy_3}As you can see, I have simple “Header, subhead, paragraph” tags in clusters that continue up to 15 times.
The problem is that the
<h2>{Subhead_""}</h2>tag is not working past Subhead 7. They are all tagged properly in the templates, the Field Name is correct, and if it was a CSS problem, how come it’s not affecting Subhead tags 0-6 which look fine?
UPDATE:
I just noticed it’s funny how your <h2> tag is styling in my thread, but my <h2> tag is not styling in my client’s site.