Thank you so much for your attention.
My VS version is exactly the one instructed in the textbook - "Microsft Visual Studio Express 2013 for Web".
Ok, I now noticed it should be from Scripts folder. So my last original step of dragging "packages.config" was wrong? Do I need to unwind that? If so, how? Just delete it?
Margin: I have a 15" laptop monitor and I use screen resolution 1980x1080. All contents in the browser is the same as the one in page 80, except that it does not stretch from left edge to right edge in the browser. It is right in the middle of the screen and occupied only about 40% of the entire screen. Here are my CSS codes:
*
header
{
background-color: #C0C0C0;
width: 844px;
height: 86px;
}
{
font-family: Arial;
}
h1
{
font-size: 20px;
}
#PageWrapper
{
width: 844px;
margin: auto;
}
nav
{
width: 844px;
}
section#MainContent
{
width: 664px;
float: left;
}
aside
{
background-color: Gray;
width: 180px;
float: left;
}
footer
{
background-color: #C0C0C0;
width: 844px;
clear: both;
}
Codes for master page:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
#form1 {
font-weight: 700;
}
.auto-style1 {
color: #009900;
}
.auto-style2 {
color: #FF3300;
}
</style>
<link href="Styles/Styles.css" rel="stylesheet" type="text/css" />
<script src="Scripts/modernizr-2.8.3.
js"></script>
</head>
<body>
<form id="form1" runat="server">
<div id="PageWrapper">
<header>Header Goes Here</header>
<nav>Menu Goes Here</nav>
<section id="MainContent">
<h1>Hi there visitor and welcome to Planet Wrox</h1>
<p>We are glad you are <span class="auto-style1">paying a visit</span> to <a href="http://www.PlanetWrox.com">www.PlanetWrox.com</a>, the coolest music community site on the Internet.</p>
<p>Feel free to have a look around; there are lots of interesting <span class="auto-style2">reviews and concert pictures</span> to be found here.</p>
</section>
<aside id="Sidebar">Sidebar Goes Here</aside>
<footer>Footer Goes Here</footer>
</div>
</form>
</body>
</html>