Categories
ASP.NET CSS FreeTextBox

FreeTextBox – Set default font and size

When using the FreeTextBox HTML editor, the default font styles have to be set in the stylesheet specified in the DesignModeCss property. In my case I created a stylesheet and saved it as /App_Themes/Default/FreeTextBox.css, with the following: body { font-family:Georgia; font-size:14pt; } Then I set the DesignModeCss property: <uc:FreeTextBox ID=”ucFreeTextBox” DesignModeCss = “~/App_Themes/Default/FreeTextBox.css” Runat=”server” /> […]

Categories
CSS

How to keep footers at the bottom of the page with CSS

http://matthewjamestaylor.com/blog/keeping-footers-at-the-bottom-of-the-page This is a site I found that used strictly table-less HTML and CSS to position the footer at the bottom of the page even when there’s littile or no content. I tested it in IE6 & 7, Firefox, and Opera and it worked fine in all 4 browsers.

Categories
CSS

The @import rule

The ‘@import’ rule allows users to import style rules from other style sheets. Any @import rules must precede all rule sets in a style sheet. The ‘@import’ keyword must be followed by the URI of the style sheet to include. A string is also allowed; it will be interpreted as if it had url(…) around […]

Categories
CSS

CSS Directories

wiht.link/css3_information www.cssgallery.com www.cssbeauty.com www.cssdrive.com www.cssmania.com www.alvit.de/css-showcase/ www.w3csites.com www.bestwebgallery.com www.csselite.com www.unmatchedstyle.com www.designsnack.com www.cssheaven.com www.cssglobe.com www.mostinspired.com www.thebestdesigns.com www.csstux.com www.cssbased.com www.css-website.com www.designshack.co.uk www.cssclip.com www.my3w.org www.csshazard.com www.css-design-yorkshire.com www.cssprincess.com www.cssblast.ru www.coolsitecollection.com www.cssgalaxy.com www.cssflavor.com www.submitcss.com

Categories
CSS

Master Stylesheet

Removes the default browser styling /***** Global Settings *****/ html, body { border:0; margin:0; padding:0; } body { font:100%/1.25 arial, helvetica, sans-serif; } /***** Common Formatting *****/ h1, h2, h3, h4, h5, h6 { margin:0; padding:0; font-weight:normal; } h1 { padding:30px 0 25px 0; letter-spacing:-1px; font:2em arial, helvetica, sans-serif; } h2 { padding:20px 0; letter-spacing:-1px; […]