Beginner CSS help needed - White space.

So, I'm creating this website...yes im a beginner, and I just dont know how to add white space onto each side of the site as to center it in the browser.
here's what I have...but, when I try and use "float:left;" the div sits outside the container, even though it is definitely inside it? Any recs? Thanks x
body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #000000;
    height: auto;
#container {
    width: 750px;
    margin: 0 auto;
    border: 1px solid #000000;
    text-align: left;
    background-color: #FFCCE6;
    height: auto;

Code fragments, screenshots, etc.. don't show us the problem.  For best results here, you should upload your test page to your web server and post the URL here.
Using our browser and web developer toolbars, we can see your page, underlying code and trouble shoot what might be going wrong.
As a rule of thumb, build your HTML content logically from top to bottom of page.  Then go back in and add division tags for your CSS to grab onto.  My guess is that you have positioned the left column outside your main wrapper division.  But without seeing your HTML and CSS code, the best we can do is make guesses.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com

Similar Messages

  • Need help with white spaces/halos when creating PNG

    I'm using Illustrator CS6 on Windows 7. I'm trying to create some pushpins that will go on an online map. I've created the graphic in Illustrator and everything looks nice and sharp. My problem is when I try to convert this .ai file to png. The ai file is set up on 8.5 x 11 artboard with the graphic taking up the whole artboard; the final size of the png needs to be 20x34 pixels at 72 dpi.
    I've tried both Save for Web and Export but no matter what I do, when I open the png in Photoshop, there is a white space between the grey pushpin and the black stroke as well as around the outside of the S. No matter what I've tried, I can't get rid of these unwanted white spaces/halos. Is there a setting I'm missing somewhere? The large image below is how it looks in Illustrator; the small image is the png opened in Photoshop. How can I get the small png to be as crisp as the large ai file? Thanks.

    mc-mark,
    Are you sure the artwork is contained within whole pixels on the Artboard?
    One way to obtain that is to move the artwork so that the Transform panel tells you that the X and Y values of the lower left corner (or centre or something else) are whole pixels/points; another way is to tick Align to Pixel grid  in the Transform panel, but I am afraid that may distort the artwork when used at this stage.

  • URGENT HELP ON white space in jsp response

    I have written a jsp and printing a String at the end of jsp.Only one out.print() statement is used in the whole jsp page but the output(when we use view source) comes with lot of white space(new line characters) before the string. Actually I want only string in the response nothing else(no html code,no white space).As this string to be send as sms to mobile.
    pseudo code
    <%@ page language="java" contentType="text/plain" %>
    <%
    String text="";
    do processing
    out.println(text);
    %>
    When I see OUTPUT using view source The output is Loke this with lots of white Spaces
    String output
    </body>
    </html>
    these html tags and spces are not desirable.
    Please provide the solution .
    thanks in advance.

    I believe the white space is due to empty println statements created by jspc - jasper
    you can get rid of the spaces by setting the trimSpaces parameter to true in your web.xml
    It will be more efficient than a filter also text that is marked as <pre> or that has
    style="white-space: pre" will not be affected.
    Andrew Bailey
    www.hazlorealidad.com
    Example:
    <servlet>
    <servlet-name>jsp</servlet-name>
    <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
    <init-param>
    <param-name>fork</param-name>
    <param-value>false</param-value>
    </init-param>
    <init-param>
    <param-name>trimSpaces</param-name>
    <param-value>true</param-value>
    </init-param>
    <init-param>
    <param-name>xpoweredBy</param-name>
    <param-value>false</param-value>
    </init-param>
    <load-on-startup>3</load-on-startup>
    </servlet>

  • Help Needed - replacing space with non-breaking space on the fly

    Hi,
    I have a text field I'm trying to fiddle the input on. Basically I want to replace all spaces (ascii code 32) with non-breaking spaces (ascii code 160) as they are typed.
    It seemed as though a KeyListener was the way to go, and I've successfully detected whenever a space is sent. I can consume() that KeyEvent, or setKeyChar to change it to another key. But I cannot see how to change it to a non-keyboard character.
    Any suggestions?

    i think you can do smt likeDocument doc = mySwingTextComponent.getDocument();
    doc.setDocumentFilter(new MyDocumentFilter());
    class MyDocumentFilter extends DocumentFilter {
       public void remove(DocumentFilter.FilterBypass fb, int offset, int length) throws BadLocationException {
          fb.remove(offset,length);
       public void insertString(DocumentFilter.FilterBypass fb, int offset, String string, AttributeSet attr) throws BadLocationException {
          replace(fb,offset,0,string,attr);
       public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
          text.replaceAll("SPACE","NB WHITE SPACE");
    }asjf
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/text/DocumentFilter.html

  • Urgent CSS Help Needed

    Hi guys, I need some serious help, I am making a website for
    University and am struggling to center the website so that it stays
    centered on different resolutions and when the window is made
    smaller. My lecturer gave me the code which is apparently this -
    body {
    margin:50px 0px; padding:0px;
    text-align:center;
    #Content {
    width:500px;
    margin:0px auto;
    text-align:left;
    padding:15px;
    border:1px dashed #333;
    background-color:#eee;
    but I have no idea what to do with this stuff in order to
    correctly implement it, the attached code is an example of one of
    the pages I want centering, could someone either give me a step by
    step walkthrough of what to do? or could they show me directly
    where the code goes in the attached stuff.
    Thanks in advance

    try this:
    <!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>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Simons Self Portrait Bio</title>
    <style type="text/css">
    <!--
    body {
    margin:50px 0px; padding:0px;
    text-align:center;
    #Content {
    width:500px;
    margin:0px auto;
    text-align:left;
    padding:15px;
    border:1px dashed #333;
    background-color:#eee;
    position:relative;
    #apDiv1 {
    position:absolute;
    left:0px;
    top:1px;
    width:135px;
    height:183px;
    z-index:1;
    #apDiv2 {
    position:absolute;
    left:76px;
    top:119px;
    width:383px;
    height:226px;
    z-index:2;
    -->
    </style>
    </head>
    <body>
    <div id="Content">
    <div id="apDiv1"><img src="Images/xboxbio.jpg"
    width="700" height="500" border="0" usemap="#Map" />
    <map name="Map" id="Map"><area shape="rect"
    coords="12,456,122,492" href="xbox.html" />
    </map></div>
    <div id="apDiv2">
    <iframe src="bioframe.html"
    width="383" height="200"
    align="right" marginheight="0" marginwidth="0">
    </iframe>
    </div>
    </div>
    </body>
    </html>

  • Beginner Question - Help Needed for EJB QL Sample Application

    I'm working with a group of student interns, like myself, and we've been given an assignment to work with Oracle. All of us have no training or experience with this, so we're just learning as we go.
    I've been trying to run the EJB QL Sample Application (http://www.oracle.com/technology/sample_code/tech/java/ejb_corba/ejbql/Install.html), but I keep running into problems at step 3.
    Now, we will deploy the sample application onto OC4J. Open another command prompt and go to the folder <OC4J_HOME>/j2ee/home and run the following commands one-by-one
    > java -jar admin.jar ormi://<machine_name>:<admin_port> admin <admin_pwd> -deploy -file <SAMPLE_HOME>/build/ejbql.ear -deploymentName Ejbql
    > java -jar admin.jar ormi://<machine_name>:<admin_port> admin <admin_pwd> -bindWebApp Ejbql ejbql-war http-web-site /ejbql
    where,
    <machine_name>      Name of the machine where OC4J Server is running
    <admin_port>      Admin Port on which the OC4J server listens. This value by default is 23791 unless explicitly changed by the user
    <admin_pwd>      Adminstrator password to access OC4J. The default value is welcome
    When I do this step I get this error:
    Error: Unable to find java:comp/ServerAdministrator: Lookup error: javax.naming.
    AuthenticationException: Invalid username/password for default (sds); nested exc
    eption is:
    javax.naming.AuthenticationException: Invalid username/password for defa
    ult (sds)
    com.evermind.client.orion.AdminCommandException: Unable to find java:comp/Server
    Administrator: Lookup error: javax.naming.AuthenticationException: Invalid usern
    ame/password for default (sds); nested exception is:
    javax.naming.AuthenticationException: Invalid username/password for defa
    ult (sds)
    at com.evermind.client.orion.Oc4jAdminConsole.executeCommand(Oc4jAdminCo
    nsole.java:105)
    at com.evermind.client.orion.Oc4jAdminConsole.main(Oc4jAdminConsole.java
    :27)
    javax.naming.NamingException: Lookup error: javax.naming.AuthenticationException
    : Invalid username/password for default (sds); nested exception is:
    javax.naming.AuthenticationException: Invalid username/password for defa
    ult (sds) [Root exception is javax.naming.AuthenticationException: Invalid usern
    ame/password for default (sds)]
    at com.evermind.server.rmi.RMIContext.lookup(RMIContext.java:153)
    at com.evermind.client.orion.Oc4jAdminConsole.executeCommand(Oc4jAdminCo
    nsole.java:102)
    at com.evermind.client.orion.Oc4jAdminConsole.main(Oc4jAdminConsole.java
    :27)
    Caused by: javax.naming.AuthenticationException: Invalid username/password for d
    efault (sds)
    at com.evermind.server.rmi.RMIConnection.connect(RMIConnection.java:2410
    at com.evermind.server.rmi.RMIConnection.connect(RMIConnection.java:2226
    at com.evermind.server.rmi.RMIConnection.lookup(RMIConnection.java:1692)
    at com.evermind.server.rmi.RMIServer.lookup(RMIServer.java:727)
    at com.evermind.server.rmi.RMIContext.lookup(RMIContext.java:134)
    ... 2 more
    ---- Embedded exception
    javax.naming.AuthenticationException: Invalid username/password for default (sds
    at com.evermind.server.rmi.RMIConnection.connect(RMIConnection.java:2410
    at com.evermind.server.rmi.RMIConnection.connect(RMIConnection.java:2226
    at com.evermind.server.rmi.RMIConnection.lookup(RMIConnection.java:1692)
    at com.evermind.server.rmi.RMIServer.lookup(RMIServer.java:727)
    at com.evermind.server.rmi.RMIContext.lookup(RMIContext.java:134)
    at com.evermind.client.orion.Oc4jAdminConsole.executeCommand(Oc4jAdminCo
    nsole.java:102)
    at com.evermind.client.orion.Oc4jAdminConsole.main(Oc4jAdminConsole.java
    :27)
    Any suggestions to fix this error?
    Thanks in advance for any help.

    George,
    The Readme.html file is available with the ejbqlsample.jar downloadable (Extract and find the doc in Ejbql\docs\Readme.html) which is printable.
    Or,
    If you are trying to print the file directly from OTN site, you need to set the Page-Setup Orientation to 'Landscape'.
    Hope this helps.
    Regards
    Pushkala

  • Help needed: Disk space does not free up even after deleting files.

    Background information for this problem: I have my iPhoto library on an external HD, and was importing files from that same drive into iPhoto, and began receiving messages that I was very low on disk space on my internal HD. From here, it seemed like iPhoto was using my boot drive for some kind of cache. Regardless of the actual reason, I began moving files from my internal HD to fix this problem temporarily (while I was importing).
    At this point, I started fiddling with my files and found that no matter how many files I would delete from my HD, the available space in the finder would not free up. *At this point, I have less than 20GB on my HD, yet it says I have 1.23 GB available out of 108 GB.*
    Here is what I have already tried to fix the problem, to no avail:
    a) Original user was using Filevault. I backed up all the files, created a new user without Filevault, and restored the files.
    b) Booted from CD and used Disk Utility to erase free space.
    c) Verified and fixed permissions
    d) Deleted all app and system caches (via CacheOut X)
    e) Fixed/Repaired all user/system preferences (via Preferential Treatment)
    *Does anyone have any idea what's going on?*
    -

    Thanks for the suggestion.
    I ran WhatSize and here is the result. Oddly, it says there is 40.2 GB used (in the top-left) which conflicts with the information directly below it: "Capacity 108 GB, Used 103GB, Available 4.27 GB". Not so helpful.
    Disk Inventory X solved the problem, however. Much thanks! I wasted most of my weekend troubleshooting this sad issue. Anyway, Disk Inventory X revealed a bug where my external hard drive for photos was still appearing as a mounted volume, even though the HD was no longer connected. Freaky.
    After moving it to the trash and deleting it, I've recovered the space.
    Again, thanks! Contact me if you're curious about the details, as this might help you diagnose similar problems in the future.
    - Mike

  • Float Drop CSS help needed, i'm loosing my mind.

    here is an example ...
    http://www.wiatrc.org/wiatrc/vendor/test.html
    i know my code is a mess, i've searched the board, but have
    succeeded in confusing myself even more.
    i did the 'float left' and even took out one of my columns to
    try to make it fit.
    it seemed to work over here
    http://www.wiatrc.org/wiatrc/vendors.html
    any help would be appreciated.
    dave h

    try messing with the padding and or margins setting them to
    zero in your CSS. I tmight be helpful to post your html and css
    code to get help more easily. There are lots of issues with
    relapsing margins, default padding differences between browsers .
    and some buggy stuff within IE.
    Take a look at this page, there are some good posts on best
    practices for preventing padding/ margin issues
    CSS Margin and Padding
    issues across browsers

  • CSS help needed here!!

    Have a look the blue column headers at www.optionetics.com,
    which have white text on top. (Learn about Options Trading, Today's
    Market Commentary, Featured Articles) etc.
    We want to create something similar for the column headers on
    the homepage at www.investix.co.uk for the 2 centre columns. Is
    there a snippet of CSS code that I can use to create this blue
    column header?

    Hi.
    As Walter said in that page the H2 element have been styled
    with a
    background image. The background image they are using is
    here:
    http://www.optionetics.com/images/hd-bg.gif
    So you will have an idea.
    For get the same effect in your page, would be:
    The ccs code:
    .column2-unit-left h3 {
    color: #fff;
    font-size: 100%;
    background: transparent url(here the background image)
    no-repeat;
    padding: 2px 6px 1px;
    border-bottom: 2px solid #3c3;
    margin: 0 0 6px;
    As you have two column the right column would be as the above
    but with
    .column2-unit-right h3.
    the html code would be:
    <div class="column2-unit-left">
    <h3><a href="stocks_foundation.html">Stocks
    Foundation
    Program</a></h3>
    <p><img src="multiflex3/img/new
    imgs/rader_watching_trading_screen.jpg" alt="" height="56"
    width="85"
    border="0" />Learn the principles every investor should
    know</p>
    <hr noshade="noshade" size="1" />
    Play with the colors, the margins, the paddings till you get
    final desired.
    "HYPER83" <[email protected]> escribió
    en el mensaje de noticias
    news:gaoit9$n9h$[email protected]..
    > Have a look the blue column headers at
    www.optionetics.com, which have
    > white
    > text on top. (Learn about Options Trading, Today's
    Market Commentary,
    > Featured
    > Articles) etc.
    >
    > We want to create something similar for the column
    headers on the homepage
    > at
    > www.investix.co.uk for the 2 centre columns. Is there a
    snippet of CSS
    > code
    > that I can use to create this blue column header?
    >
    >
    >

  • DW CS5 APP - CSS Help Needed

    I'm trying to learn about using CSS in DW CS5 and I could use some help....
    like....
    - I'm a bit confused with the difference in CSS / HTML tabs in property inspector - like why is there 2 not just 1?
    - also working with css in tables .... I try to edit / delete / change from 1 class to another and it doesn't do what I expect - that sort of thing
    - also I'd like to highlight some text and simply add css to it easily - (from css window?)
    - any way you get the ideas
    Q: are there some simple DW CS5 tutorials to get me going?

    - I'm a bit confused with the difference in CSS / HTML tabs in property inspector - like why is there 2 not just 1?
    Two what?  The HTML 'tab' gives you access to HTML properties, and the CSS 'tab' to CSS properties.  Is that what you mean?
    - also working with css in tables .... I try to edit / delete / change from 1 class to another and it doesn't do what I expect - that sort of thing
    You would have to show us what you are doing, what you expected to see, and what you actually saw.  A look at your code would be the very best way to help you with this.
    - also I'd like to highlight some text and simply add css to it easily - (from css window?)
    Sorry - I don't follow.  Highlight text and add what CSS to it?
    - any way you get the ideas
    Well, as a matter of fact, no. I don't.
    Q: are there some simple DW CS5 tutorials to get me going?
    The very best bet would be to spend your time learning about HTML and CSS - you can do that at http://www.w3schools.com.  If you are comfortable in those two, DW will be easy.

  • Beginner RMI help needed

    Hello all,
    I have fallen into a major problem. i am trying to get my first RMI system working and have looked numerous places for help. I have followed http://patriot.net/~tvalesky/easyrmi.html and cannot get passed running the client program.
    The coding is the same as the tutorial, i get the following errors...
    D:\RMI>java myRMIClient 10.0.0.7
    Exception occured: java.security.AccessControlException: access denied (java.net
    .SocketPermission 127.0.0.7:1099 connect,resolve)
    D:\RMI>java -Djava.security.policy="d:\RMI\wideopen.policy" myRMIClient 127.0.0.1
    Exception occured: java.rmi.NotBoundException: myRMIImplInstance
    ------wideopen.policy------
    grant {
    // Allow everything for now
    permission java.security.AllPermission;
    I really appreciate anyone who can help me. It is pretty urgent as i need to get this first exercise working.
    Many thanks, Riku

    Hello All,
    Many thanks for your advice,
    I have taken off the quotes and have tried to run the policy file on the server.
    When i launch rmiregistry on command prompt it shows on firewall:
    Protocol----Executable-------     Remote-----------Local----------------- Sent---------Recieved
    TCP______rmiregistry_____---___________Host Name:1099__0________0
    I then start myRMIServer
    On the command prompt it hangs on java -Djava.security.policy=d:\RMI\wideopen.policy myRMIServer 127.0.0.1
    On the firewall it states:
    TCP______java.exe______Host Name:1099_Host Name:1691__252________37
    That TCP dissapears after a timeout but on command prompt it hangs until i press CTRL+C
    I cannot explain what is happening there.
    I am not experienced enough to understand the code either.
    I really appreciate if you can give me more guidance on this.
    Thanks, Riku :)

  • CSS Help Needed

    This page displays ok on the web http://www.jdcdemo.com/pbc/test2.html but in the layout mode in DWCS4 layout mode it looks like a train wreck http://www.jdcdemo.com/pbc/screenshots.html I floated everything in the side bar to the left, but it held the main content down and I could not figure out how to make it behave.
    Bottom line, I'm just about certain there is something amiss with the CSS, but I cannot figure out what it is.So here I am, hat in hand, seeking advice from those who are better informed and more experienced than I. I am relatively new to CSS, probably understanding the process only enough to be dangerous.
    Thanks in advance,
    Joe

    This comes up on a regular basis, design looks fine in the browser, looks bad is design view. I have never read any other advice other than to not worry about it and worry only about the view that in the browser. I did have occasion this week where something in my DW DV went out, browser was fine, but I was able to correct it (I added a clear to a float that did not seem nessassry to me).
    I would not spend alot of time on it, it if looks good out live, let F12 be your guide and don't worry about DV, (It will get you to code view more anyway).
    Gary

  • Help needed-white screen of death while attempting to migrated files from imac to macbook

    Using the migration program on my macbook (about a month old), I rebooted my imac (about a year old) while pressing down the 't' key.  Instead of rebooting and bringing up the firewire symbol, I got the white screen of death.  Thankfully, I have gotten the imac working again (except I can't get it to recognize my wireless mouse)…but am afraid to try the migration app again for fear of having the same problem and doing irreperable damage......any suggestions for what went wrong the first time and what I should do differently?  Also, any ideas on how to get it to recongize my mouse? It has recongized my keyboard with no issue.

    Download at www.memtestosx.org
    Power on your MBP while holding down the Command and S keys to force Mac OS X to boot into Single User Mode. Once you see a black screen with white text, you can release the key combination. After all the system logging is done scrolling past, type 'memtest all 2' (without the quotes) to test all memory two times. Two passes should be enough to detect any blatant problems, but I wouldn’t hesitate to let it run for hours on end if I suspected an intermittent memory problem (memtest all). When complete, you should be greeted with “All tests passed” if your RAM is in good condition. If your system locks up or freezes indefinitely during the test, you may have a bad memory module on your hands.
    (above taken from www.command-tab.com)

  • Help Needed - White Screen and that's it.

    Okay so I accidentally left my MBP on sleep while in my bag the other day (I was going to use it again that day but never) and apparently the battery had died while in there. Currently it's on about 3 out of the four green lights on the bottom and everytime I try to switch it on, I get the white screen prior to the apple logo appearing, the startup sound and then that's it. The light is just normal as it would be if it was on, which makes me think it's not a RAM issue.
    Any suggestions?

    Sooo, update on the MBP front. It's still doing it and now coming up with a flashing folder, think I already said that. Anyways, I've ran Disk Utility, everything is apparantly fine and I dont know what I ran, but It was something to do with mounting, I could still browse through everything on my HDD so I'm assuming everything is still there Which is good. I just dont have a clue why it wont start up lol.

  • Serious CSS Help Needed

    Hi,
    This is my first attempt at a pure table-less css driven
    site. I have been doing a combination of both up to this point.
    Here is the site
    http://www.getascendent.com/
    it shows up fine in IE if I force IE to use "Quirks Mode". Take a
    look at the site in FireFox and you will see what I mean.
    Here is the CSS I am use. Any advise would be greatly
    appreciated.
    Thanks,
    Art

    Using frames? Why on earth?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "TC5Racer" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hi,
    > This is my first attempt at a pure table-less css driven
    site. I have been
    > doing a combination of both up to this point.
    > Here is the site
    http://www.getascendent.com/
    it shows up fine in IE if I
    > force IE to use "Quirks Mode". Take a look at the site
    in FireFox and you
    > will
    > see what I mean.
    >
    > Here is the CSS I am use. Any advise would be greatly
    appreciated.
    >
    > Thanks,
    > Art
    >
    >
    >
    >
    >
    > @charset "utf-8";
    > /* CSS Document */
    >
    > body {
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-size: 0.8em;
    > color: #333333;
    > text-align: center;
    > background-color: #FFFFFF;
    > }
    >
    > #wrapper {
    > position: relative;
    > height: 100%;
    > width: 718px;
    > text-align: left;
    > display: inline;
    > background: #FFFFFF;
    > border-top: 1px solid #333333;
    > border-right: 1px solid #333333;
    > border-bottom: 1px solid #333333;
    > border-left: 1px solid #333333;
    > clear: both;
    > }
    >
    >
    > #header {
    > border-bottom: 1px dotted #000000;
    > display: inline;
    > float: left;
    > margin-bottom: 1px;
    > }
    >
    >
    > .leftimg {
    > float: left;
    > margin-bottom: 5px;
    > margin-top: 1px;
    > border-bottom:1px dotted #000000;
    > border-top:1px dotted #000000;
    > clear: both;
    > }
    >
    >
    > /*navigation*/
    >
    > #mainnavigation {
    > font-family: Verdana, Arial, Helvetica, sans-serif;
    > font-size: 0.8em;
    > letter-spacing: 1px;
    > }
    > #mainnavigation ul {
    > list-style: none;
    > margin: 0;
    > margin-left:2px;
    > padding-top: 4px;
    > padding-bottom:4px;
    > }
    > #mainnavigation li {
    > display: inline;
    > }
    > #mainnavigation a:link, #mainnavigation a:visited {
    > margin-right:2px;
    > padding: 3px 10px 2px 10px;
    > color:#cccccc;
    > background-color:#999999;
    > text-decoration:none;
    > border-top: 1px solid #666666;
    > border-left: 1px solid #666666;
    > border-bottom: 1px solid #666666;
    > border-right: 1px solid #666666;
    > }
    > #mainnavigation a:hover {
    > background-color:#333333;
    > border-top: 1px solid #000000;
    > border-left: 1px solid #000000;
    > border-bottom: 1px solid #000000;
    > border-right: 1px solid #000000;
    > }
    > #mainnavigation a:active {
    > margin-right:2px;
    > padding: 3px 10px 2px 10px;
    > color:#cccccc;
    > background-color:#333333;
    > text-decoration:none;
    > border-top: 1px solid #666666;
    > border-left: 1px solid #666666;
    > border-bottom: 1px solid #666666;
    > border-right: 1px solid #666666;
    > }
    > /* Hide from IE 5-Mac.Only IE-Win see this \*/
    >
    > * html p {
    > height: 1%;
    > }
    > /* End hide from IE5/Mac */
    >
    > /*main content style*/
    > h1 {
    > font-size: 1.2em;
    > font-style: normal;
    > line-height: normal;
    > font-weight: bold;
    > font-variant: normal;
    > text-transform: none;
    > color: #990000;
    > text-decoration: none;
    > letter-spacing: 1px;
    > text-align: left;
    > text-indent: 2px;
    > display: inline;
    > margin-left: 3px;
    > margin-bottom: 3px;
    > }
    > #content {
    > text-align: left;
    > word-spacing: 1px;
    > margin-top:2px;
    > margin-bottom:2px;
    > margin-left:3px;
    > float: left;
    > width: 718px;
    > clear: both;
    > }
    > #content h2 {
    > font-size: 0.9em;
    > font-style: normal;
    > line-height: normal;
    > font-weight: bold;
    > font-variant: normal;
    > text-transform: none;
    > color: #000066;
    > text-decoration: none;
    > letter-spacing: 1px;
    > text-align: left;
    > text-indent: 2px;
    > display: inline;
    > margin-left: 3px;
    > margin-bottom: 10px;
    > clear: both;
    > }
    > .feature {
    > letter-spacing: 1px;
    > text-align: left;
    > display: block;
    > padding: 2px 10px;
    > float: left;
    > width: 400px;
    > list-style: circle outside;
    > margin-top: 25px;
    > margin-bottom: 5px;
    > clear: both;
    > }
    > .feature a:link, .feature a:visited {
    > letter-spacing: 1px;
    > text-transform: none;
    > color: #000000;
    > text-decoration: none;
    > }
    > .feature a:hover {
    > letter-spacing: 1px;
    > text-transform: none;
    > color: #990000;
    > text-decoration: none;
    > }
    > .feature a:active {
    > letter-spacing: 1px;
    > text-transform: none;
    > color: #000066;
    > text-decoration: none;
    > }
    > #footer {
    > font-size: 0.7em;
    > text-transform: none;
    > color: #333333;
    > text-decoration: none;
    > letter-spacing: 1px;
    > text-align: right;
    > vertical-align: bottom;
    > display: block;
    > width: 720px;
    > border-top: 1px dotted #000000;
    > border-right-color: #000000;
    > border-bottom-color: #000000;
    > border-left-color: #000000;
    > z-index: 1;
    > background: #999999;
    > padding: 2px 10px 3px;
    > }
    >

Maybe you are looking for

  • How do you add a printer to Print_print_printer option?

    I cannot print to paper from Firefox. I have a MacBook Pro. I have done the about:config / print.print_printer, and it says "user set" type "string". I can print from Word and Safari, but not from Firefox. I have looked everywhere for an answer and c

  • Set-IRMConfiguration failed with error "Cou ld not establish trust relationship for the SSL/TLS secure channel."

    Hi, experts  I'm trying to configure a lab environment according tutorial http://www.msexchange.org/articles-tutorials/exchange-server-2010/compliance-policies-archiving/rights-management-server-exchange-2010-part3.html After completing configuration

  • Premiere Pro CS5 No Longer Saves Project

    I am working on a Mac OS X Version 10.6.8 with 2 x 2.8 GHz Quad-Core Intel Xeon Processors and 12 GB 800 MHz DDR2 FB-DIMM Memory. I am running Premiere Pro CS5 on this machine. I work for a company who produces 50-100 short, education-based videos fo

  • EQ is set to off

    EQ is currently set to off, how do i set it to on?

  • Safari crashing - here's my crash log

    i use safari as my default browser and have had virtually no problems with it. lately, however, it's started crashing. i had quicktime 7.0.4 installed. i thought that might be the problem so i re-installed 7.0.3. it made no difference, however. here'