Home » Posts tagged "web design"

Archive for the 'web design' Tag

Single ASP.NET page

<%@ Page Language=”VB” %> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”> <script runat=”server”> </script> <html xmlns=”http://www.w3.org/1999/xhtml”> <head runat=”server”> <title>My VB.NET Page </title> <link href=”../css/Styles/Site.css” rel=”stylesheet” type=”text/css” /> </head> <body> <div class=”page”> <div class=”header”> <div class=”nav_pos” > <div class=”nav_format”> <% Response.Write(MonthName(DateTime.Now.Month) & ” + ”   ” & DateTime.Now.Day & “, ” & DateTime.Now.Year) %> […]

CSS Centering

Author: Russ Weakley How do you center a containing block on a page using CSS? There are two main methods and the choice should be made based on whether your page layout is liquid (will move in and out depending on the size of the browser window) or fixed width. Centering liquid layouts Liquid layouts […]

CSS Centering – fixed layout

Use this simple css code to center page. The style has not been tested with all types and version of browsers, so if it does not work for you try some other suggested code on this website, simply searching for “centering.’ External style sheet Style.css @charset “utf-8”; /* CSS Document */ body {   padding-top: […]