Does hiding site title and or tagline or site description matter SEO

0 votes
In so many tutorials and videos I  have seen everyone mentioning about the importance of site title and site description. In some cases they even use <h2> for site title and <h1> for site description .
<header>

<div id="logo"><a href="#"><img src="images/logo.png" alt="Logo of the Company" title="Company Title"/></a></div>

<hgroup>
<h2 id="site-title">Site Title</h2>
<h1 id="site-description">Site Description</h1>            
</hgroup>

</header>

OPTION 1 :  In some webpages we are not able to see  title or description  instead there will be a logo . In this case they use text-indent to hide them

#site-title,
#site-description{
    text-indent: -9999px;
    }

but there is a disadvantage in this they take-up the space in the header and to compensate this we need to put some margin on the following items

OPTION 2 :  instead of the text-indent we can use "visibility:hidden"

#site-title,
#site-description{
    visibility: hidden;
    }

but the same problem arises in this case too

OPTION 3 : display: none

#site-title,
#site-description{
    display: none;
    }

here the text vanishes and doesn't take-up any space but it also vanishes for the crawler making this method not seo friendly
How can I put them there for SE-Crawler, but invisible from the eye without taking place?
Mar 8, 2022 in Digital Marketing by Kichu
• 19,050 points
264 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.

Related Questions In Digital Marketing

0 votes
0 answers

SEO and Django with title and description tags

I have a base.html for the base ...READ MORE

Mar 8, 2022 in Digital Marketing by Kichu
• 19,050 points
350 views
0 votes
1 answer

Yoast SEO: remove og:description and twitter:description

add_filter("wpseo_opengraph_desc", "remove_yoast_og"); add_filter("wpseo_twitter_description", "remove_yoast_og"); function remove_yoast_og($description) { ...READ MORE

answered Mar 1, 2022 in Digital Marketing by narikkadan
• 63,420 points
342 views
0 votes
0 answers

SEO: Why "indexed pages" in Webmaster Tools and the command "site:" gives so much difference?

"Indexed URLs: 305,509"webmaser shows this when i ...READ MORE

Mar 2, 2022 in Digital Marketing by Kichu
• 19,050 points
313 views
0 votes
0 answers

Text should be kept in ppt, pdf, or on html pages to get more SEO benefits and good results at SERP

best method/option for the text to be ...READ MORE

Mar 6, 2022 in Digital Marketing by Kichu
• 19,050 points
372 views
0 votes
1 answer

SEO asp.net description spelling order

https://neilpatel.com/blog/simple-guide-to-seo/ here you can see step by ...READ MORE

answered Mar 1, 2022 in Digital Marketing by narikkadan
• 63,420 points
245 views
0 votes
1 answer

Facebook Graph API SEO Comments and Profanity Filter

actually there is no way  to be ...READ MORE

answered Mar 1, 2022 in Digital Marketing by narikkadan
• 63,420 points
757 views
0 votes
0 answers

Replacing H1 text with a logo image: best method for SEO and accessibility?

i want to link my logo to ...READ MORE

Feb 14, 2022 in Others by Kichu
• 19,050 points
2,755 views
0 votes
1 answer

Replacing H1 text with a logo image: best method for SEO and accessibility?

<h1> <a href="http://stackoverflow.com"> ...READ MORE

answered Feb 21, 2022 in Others by narikkadan
• 63,420 points
2,201 views
0 votes
1 answer

Switching H1 text with a logo image

<h1> <a href="http://stackoverflow.com"> ...READ MORE

answered Feb 27, 2022 in Others by narikkadan
• 63,420 points
550 views
0 votes
1 answer

seo - images and h1

SEO is speculative at best. Generally, the accepted ...READ MORE

answered Mar 11, 2022 in Digital Marketing by narikkadan
• 63,420 points
544 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP