How to hide your anchors inside an article in WP?

msslife

Regular Member
Joined
Nov 23, 2009
Messages
435
Reaction score
91
Hi guys.

Any idea? I have my own wordpress blog in my university site ( .edu :) )

and I was thinking to hide my anchors inside an article so is there a way to do that?

I tried changing the color but it still colored!

Hope someone could help.


Also anyone know how to hide keywords via normal hiding i think there is something like display:none


Thanks.
 
this should change the color of your anchor text. You just need to know the color code you want it changed to.

Code:
Example: <a href="home.htm" style="color: #ff0000;">home</a>
- this in-line styled attribute changes the anchor-text to RED, overuling the default, inherited, linked and embedded styles. 

#000000 is black
 
Thanks so much man i will try this tomorrow.

anyone have any other ideas?
 
The classic ways of hiding, though no guarantees on a Wordpress post, include:
1) display:none
2) setting text colour the same as the background colour (and of course text-decoration:none)
3) putting it in a div with a huge negative margin on the div
4) use absolute/relative position and plop a div over the top of your div so it's a layer underneath

There are tons of others, but there's a few to start with...
 
Back
Top