Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   Style sheet question (http://www.velocityreviews.com/forums/t946689-style-sheet-question.html)

Zach 05-24-2012 12:48 PM

Style sheet question
 
Could someone please tell me why the style sheet has no effect?

Zach.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs"
Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Test</title>
<link href="Style.css" rel="stylesheet" type="text/css" />
</head>
<body >
<form id="form1" runat="server">
<div>
<h1>This is a test page</h1>
</div>
</form>
</body>
</html>

<!---
The style sheet (Style.css)

body
{
background-color:Yellow;
}
--->


Arne Vajhøj 05-31-2012 01:25 AM

Re: Style sheet question
 
On 5/24/2012 8:48 AM, Zach wrote:
> Could someone please tell me why the style sheet has no effect?


You code works fine here.

Arne


Zach 06-01-2012 04:57 PM

Re: Style sheet question
 
"Arne Vajhøj" <arne@vajhoej.dk> wrote in message
news:4fc6c876$0$284$14726298@news.sunsite.dk...
> On 5/24/2012 8:48 AM, Zach wrote:
>> Could someone please tell me why the style sheet has no effect?

>
> You code works fine here.
>
> Arne
>


I couldn't find out what was going wrong in the actual code I was writing.
Then I gave up using a separate style sheet and put the styles in
<style>...</style>
and no probem, so I took the easy way out. The application has been
uploaded and is running OK.

Thanks,
Zach,


Michael Lalonde 06-21-2012 03:17 AM

Re: Style sheet question
 
X-No-Archive: Yes

Perhaps your stylesheet path was incorrect (subfolder?) or you were
calling the index file from a subdirectory?
You could try <link href="/Style.css" rel="stylesheet" type="text/
css" />

just a guess....

Michael Lalonde - Jumlers.com food catering
Sudbury, Ontario



All times are GMT. The time now is 04:43 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57