In DevStudio with version 8.09 I was able to open the text editor of the html file and insert the following code to customize the format of all my hyperlinks.
<STYLE type=text/css>A:link {
COLOR: #ffffff ; TEXT-DECORATION: none
}
A:visited {
COLOR: #ffffff ; TEXT-DECORATION: none
}
In AppStudio I have not yet found the central place to set the same. I found a post (and it's rather dated) that makes me wonder if I need to do something similar in AppStudio.
For now I individually set the anchor properties for each hyperlink, but I am sure there must be an easier way. I'm still looking through the forum for answers, and I'll post an update if I come across the answer.
Here's the post:
Are you by any chance looking for a standard place to change the styling, so it will be available for every report with links in them?
As far as I know there isn't any such css file provided by IB. What you can do though, is define your own css file and link this file to your report(s) with the set cssurl command, which you can set in edasprof to have it included as a standard.
GamP
- Using AS 8.2.01 on Windows 7 - IE11.
in Focus since 1988
Posts: 1945 | Location: Netherlands | Registered: September 25, 2007 Reply With Quote
Doug
Virtuoso
posted June 07, 2011 05:47 PM Hide Post
You can try something like this:
<style>
a:link {text-decoration:none;color:Navy;background:none}
a:visited {text-decoration:none;color:Navy;background:none}
a:active {text-decoration:none;color:Navy;background:none}
a:hover {text-decoration:underline;color:Black;background:#fff200;}
</style>
Pick your favorite colors...
BTW: This goes within your HTML HEAD tags.
WebFocus 8.2.04
WebFocus 8.2.04