I'm not sure if this is possible but I am helping out with a rather large website that was compiled with .aspx We are wanting to change a link on the website but there is no actual place to edit the text for the link. I can however use CSS or possibly Javascript to edit the site.
<li>
<a href="otherpages.aspx" target="">Other Pages</a>
</li>
<li>
<a href="bluepage.aspx" target="">Blue Page</a>
</li>
I want to change the link and text that says Blue Page to something such as Red Page. example:
<li>
<a href="redpage.aspx" target="">Red Page</a>
</li>
Is it possible to search and replace the text for that hyperlink using CSS?
I have already tried creating an overlay that covers the original text and link but it doesn't position properly on the page depending on the browser the user uses. example:
<div id="cover"></div>
#cover {
background: url('../images/cover.png') no-repeat;
top: 80%;
margin-left: 0px;
height: 30px;
width: 203px;
position: relative;
}
Anyone have any other ideas on how I can possibly replace text with CSS or Javascript?