Hide description with '' Display: none "is bad for SEO?

4

I have some links on the site and I will add a description for each one of them, and hide the description, but I have a question about hiding with display: none

See how I want to do it

<li><a href="http://www.facebook.com/descritivo.BR" <?=$nofollow?> target="_blank"><i class="sociais-sprits ico_top_face"></i> <p class="txtDescritivo"> Facebook </p></a></li> 

Another question is about this description within the anchor and LI , through the paragraph if it is a good practice for SEO.

    
asked by anonymous 29.08.2016 / 19:31

3 answers

3

It will depend a lot on what you are hiding!

Using display:none; to improve the user interface and experience will not give you SEO penalties.

But if you do something to circumvent search engines, sooner or later you can be penalized with search fines.

Read more about:

29.08.2016 / 19:45
2

In general not. At least Google is able to "see" that content. It does not penalize ranking because it is marked this way. So you can do what you need without major concerns.

Of course I can not guarantee that in any situation this will happen. There may be some more complex pattern where this mechanism is used that there may be some problem. But it must be rare, because the mechanics alone will not cause any problems.

The example question does not clearly state how it is done, but it does not look like it will be a problem.

I do not see problems in anything else unless <i class="sociais-sprits ico_top_face"></i> is not being used at all.

Obviously, Google can interpret this as an attempt to hide text to make it easier to search and punish. But this does not usually occur according to what I read in Google's own forums. There is an incentive to do this. In general it will not be considered an attempt to circumvent the search engine.

It's more complicated to say about other mechanisms, but I doubt that it will differ much from this.

    
29.08.2016 / 19:40
1

Using display:none will not affect your SEO. In the case of visibility:hidden , it may not be indexed.

    
02.09.2016 / 05:10