how to change all link to text/image in wordpress?

Status
Not open for further replies.

keito0015

Active Member
999
2012
270
5
how to change all link(like rapidgator, uploaded etc) to text/image in wordpess?

example

gPPRght.png


Code:
rapidgator.com/samplefile.htm

result
Code:
Rapidgator link here
Code:
IMAGE


hope someone can help me.
 
Last edited:
2 comments
Here an example of Nitroflare link

Only you need to add it in CSS

Code:
a[href*="http://nitroflare.com/"], a[href*="http://www.nitroflare.com/"] {
  height: [COLOR=#ff0000]30px[/COLOR];
  width: [COLOR=#ff0000]240px[/COLOR];
  text-indent: -9999px !important;
  background-color: [COLOR=#ff0000]blue[/COLOR];
  display: inline-block;
}
a[href*="http://www.nitroflare.com/"]:after,a[href*="http://nitroflare.com/"]:after{
    content: "[COLOR=#ff0000]Download From NITROFLARE[/COLOR]";
    display: inline-block;
    float: left;
    text-indent: 0px !important;
    color:[COLOR=#ff0000]#fff[/COLOR];
    text-decoration: none;
    text-shadow: none;
    text-align: center !important;
    margin: 0px [COLOR=#ff0000]30px[/COLOR];
    font-size: 13px;
    line-height:[COLOR=#ff0000]30px[/COLOR];
}

[YOU CAN CHANGE THOSE RED MARKS TO YOUR OWN NEED]

Result=>

TyhRN8d.png


PS-
Since its a nitroflare example
so nitroflare.com used


for Rapidgator or uploaded
you need to change those
a[href*="http://nitroflare.com/"], a[href*="http://www.nitroflare.com/"]
&
a[href*="http://www.nitroflare.com/"]:after,a[href*="http://nitroflare.com/"]:after

to

a[href*="http://uploaded.com/"], a[href*="http://www.uploaded.com/"]
&
a[href*="http://www.uploaded.com/"]:after,a[href*="http://uploaded.com/"]:after


as well as for Rapidgator.net


Regards
 
Last edited:
Status
Not open for further replies.
Back
Top