Wrox Programmer Forums
|
ASP.NET 1.0 and 1.1 Basics ASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old November 14th, 2003, 10:10 AM
Authorized User
 
Join Date: Jun 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Default HyperLink web server control style

Hi
How can i make my styles work on HyperLink web server control.
I want it to be some color when the mouse is over it...
Thanks.
Alex
 
Old November 14th, 2003, 02:37 PM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 540
Thanks: 0
Thanked 4 Times in 4 Posts
Default

This may be what you are looking for. You can add these to your <head> tag:

<style>
a:active {
    font-size: 12px;
    font-weight: bold;
    color: #4B7292;
    text-decoration:none;
}
a:link {
    font-size: 12px;
    font-weight: bold;
    color: #4B7292;
    text-decoration:none;
}
a:visited {
    font-size: 12px;
    color: #4B7292;
    font-weight: bold;
    text-decoration:none;
}
a:hover {
    font-size: 12px;
    font-weight: bold;
    color: #4B7292;
    text-decoration: underline;

}
</style>

Change the properties however you want. This will change the properties for hyperlinks on your page.

J
 
Old November 14th, 2003, 02:55 PM
Authorized User
 
Join Date: Jun 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
Default

Thanks
Real problem is this.
I have a user control whith a few links on it.
When i put this control on page which has reference on .css file with other properties for links i do not have properties for control
how can i solve this
Thanks





Similar Threads
Thread Thread Starter Forum Replies Last Post
Tutorial to an web server control simsen ASP.NET 2.0 Professional 0 January 15th, 2008 04:29 AM
Need help with web server control and design binici ASP.NET 2.0 Basics 1 December 20th, 2006 11:59 AM
outlook style appointment control help, thanks! raybristol C# 0 January 17th, 2006 11:39 PM
Image web server control keyvanjan ASP.NET 1.0 and 1.1 Professional 10 January 14th, 2006 02:04 PM
Textbox control style beckertc VS.NET 2002/2003 2 September 2nd, 2003 12:25 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.