Remove H1 from subheader completely
Is there not an option to remove the H1 from the subheader completely?
With a blog post you get two H1. I can remove one by removing the title of the blog, but visually it does not match up. It looks like a blogpost without title. There is one in the subheader, but that's visually not the title of the blogpost.
So, I have to manually make a title with these blogposts, but then again it does not look like an H1, so I have to alter this with css.
All would be solved with just an option for the subheader: use H1 in subheader? YES/NO
I just notice that with portfolio items the same issue arises.
Thanks,
Koen.
Comments
so do you mean to remove h1 completely from all pages or maybe from some of them? Do you mean jus h1 or maybe whole subheader section?
However as we see at, http://themes.muffingroup.com/betheme/uncategorized/175,standard-post-with-post.html we do not have 2 h1 tags. Just one in subheader. So please send us url to page where you got 2 and we'll have a look on it.
thank you.
First of All Thanks to Coretekk for his being Persistent !
I've attached a photo here to make muffingroup have a better attention.
Here is the photo :
We know how to make it not to display, but how to fix it?! For example changing H1 in breadcrumbs to H4?!
Thanks
"Be" will be the best theme in ThemeForest, I'm sure ...
Thanks for understanding!
/wp-content/themes/betheme/header.php
for this lines --->
// Page title -------------------------
echo '<div id="Subheader">';
echo '<div class="container">';
echo '<div class="column one">';
// Title
echo '<h1 class="title">'. mfn_page_title() .'</h1>';
// Breadcrumbs
if( ! mfn_opts_get('subheader') ) mfn_breadcrumbs();
echo '</div>';
------
change from h1 to any h you want lets say h3 so both
<h1 class="title">'. mfn_page_title() .'</h1>';
-------------- should be ----------
<h3 class="title">'. mfn_page_title() .'</h3>';
It's annoying to have to modify the code directly...