Hello,
I was wondering if you can allow links to all articles that are on the home page with the nofollow tag.
The main menu should stay with dofollow.
This is my website: http://www.techtube.com.br
an example of links that should be nofollow: http://imgur.com/alOY6Ei
-
This topic was modified 10 years by
Lukao350.
Hello,
The easiest way to achieve this is to make all links on your homepage not clickable (except for the menu)
You can use this custom css for it:
.home .td_block_wrap{
pointer-events:none;
}
Add the code in the theme panel->custom css box
Thanks.
-
This reply was modified 10 years by
Bogdan B..
Not exactly what I like to do. For example, the link of these articles, the source code is:
I want it:
<code>
<a href="http://www.techtube.com.br/como-montar-um-servidor-de-internet/" rel="bookmark" title="Como montar um servidor ">`
Is it possible?
Not exactly what I like to do. For example, the link of these articles, the source code is:
a href=”http://www.techtube.com.br/como-montar-um-servidor-de-internet/” rel=”bookmark” title=”Como montar um servidor”>
I want it:
a href=”http://www.techtube.com.br/como-montar-um-servidor-de-internet/” rel=”bookmark” title=”Como montar um servidor”>
Is it possible?
Sorry about the mess, I could not write here the code I wanted. I had to take the “<” the beginning, but I think you can understand
Hi,
All our modules use the same function to generate their link so changing the code will apply to all modules not just the ones on your homepage. You can change the rel attribute from here: http://screencast.com/t/lnMd6cZUR9
Thank you!