Click here to Skip to main content
15,905,877 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRe: two imagebutton controls - one works the other doesn't - no changes made Pin
DanaTA9-Oct-14 11:39
DanaTA9-Oct-14 11:39 
Generalimage link are broken in the article Pin
Prakash Lekhak21-Sep-14 16:28
Prakash Lekhak21-Sep-14 16:28 
QuestionRe: image link are broken in the article Pin
Richard MacCutchan21-Sep-14 21:21
mveRichard MacCutchan21-Sep-14 21:21 
GeneralRe: image link are broken in the article Pin
Sibeesh KV5-Oct-14 19:06
professionalSibeesh KV5-Oct-14 19:06 
QuestionASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 4:33
Member 876166721-Sep-14 4:33 
AnswerRe: ASP.NET project not 'seeing' css file Pin
jkirkerx21-Sep-14 8:57
professionaljkirkerx21-Sep-14 8:57 
GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 9:12
Member 876166721-Sep-14 9:12 
GeneralRe: ASP.NET project not 'seeing' css file Pin
jkirkerx21-Sep-14 10:05
professionaljkirkerx21-Sep-14 10:05 
You have a CSS issue then

You can put a slash in front of the href, if the file is in the root of the web site folder.

<link href="/logon.css" rel="stylesheet" />


I not sure what your trying to do, I get that your trying to change the text color.

My typical CSS file looks like this
I call it a theme file, in which this file controls the theme of the web pages
The first 4 sections set the elements input, textarea, option, the next sets the elements html and body
One you set stuff globally, then you can fine tune other stuff by using ID names and Class Names

/* /Css/EN-US_Theme.css */
 a img {border:none;}
 
 input, textarea, option, .nobox{ 

	background: transparent;
	border: 0;
	font-size: 100%;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline; 
}
 
 /*Background Color or Wallpaper */
html, body 
{
    margin: 0px auto;
	color: #808080;
	background: #383838;
    font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	font-size: 100%;
	padding: 0 0 0 0px;
    height: 100%;	
}

/* Document Color */
.PageBackground 
{
    text-align: center;
}

#DefaultHeader_Wrapper_Home 
{
	background-image: url('/images/theme/bg-repeat_x_OtherDark.png');
	background-repeat: repeat-x;
	background-position: left top;
	height: 800px;
	width: 100%;	
}

#DefaultHeader_Wrapper_Black
{
	background-image: url('/images/theme/bg-repeat_x_OtherBlack.png');
	background-repeat: repeat-x;
	background-position: left top;
	height: 800px;
	width: 100%;	
}

GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 10:20
Member 876166721-Sep-14 10:20 
GeneralRe: ASP.NET project not 'seeing' css file Pin
jkirkerx21-Sep-14 10:45
professionaljkirkerx21-Sep-14 10:45 
GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 10:58
Member 876166721-Sep-14 10:58 
GeneralRe: ASP.NET project not 'seeing' css file Pin
jkirkerx21-Sep-14 11:04
professionaljkirkerx21-Sep-14 11:04 
GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 11:18
Member 876166721-Sep-14 11:18 
GeneralRe: ASP.NET project not 'seeing' css file Pin
jkirkerx21-Sep-14 11:27
professionaljkirkerx21-Sep-14 11:27 
GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 11:38
Member 876166721-Sep-14 11:38 
GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 11:46
Member 876166721-Sep-14 11:46 
GeneralRe: ASP.NET project not 'seeing' css file Pin
jkirkerx21-Sep-14 11:54
professionaljkirkerx21-Sep-14 11:54 
GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166721-Sep-14 12:16
Member 876166721-Sep-14 12:16 
AnswerRe: ASP.NET project not 'seeing' css file Pin
Arvind Zamakia26-Sep-14 2:56
Arvind Zamakia26-Sep-14 2:56 
GeneralRe: ASP.NET project not 'seeing' css file Pin
Member 876166726-Sep-14 4:39
Member 876166726-Sep-14 4:39 
QuestionHow to add Items in DropDown List Programitically ??? Pin
Abhishek kumar12121-Sep-14 1:00
Abhishek kumar12121-Sep-14 1:00 
AnswerRe: How to add Items in DropDown List Programitically ??? Pin
M.Farrukh Abbas21-Sep-14 1:59
M.Farrukh Abbas21-Sep-14 1:59 
GeneralRe: How to add Items in DropDown List Programitically ??? Pin
Abhishek kumar12121-Sep-14 2:16
Abhishek kumar12121-Sep-14 2:16 
GeneralRe: How to add Items in DropDown List Programitically ??? Pin
M.Farrukh Abbas21-Sep-14 19:04
M.Farrukh Abbas21-Sep-14 19:04 
AnswerRe: How to add Items in DropDown List Programitically ??? Pin
Arvind Zamakia26-Sep-14 3:28
Arvind Zamakia26-Sep-14 3:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.