diff options
author | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-07-06 07:39:23 +0000 |
---|---|---|
committer | Jouni Koivuviita <jouni.koivuviita@itmill.com> | 2009-07-06 07:39:23 +0000 |
commit | 41da2fb8303ae66fc12ee4926726c0327fa44573 (patch) | |
tree | 9da8479f3f5806a6c740cdd0ab0463b4943701e1 /WebContent/index.html | |
parent | 2af8f13e6375d01010395156086e4a7b5f995e84 (diff) | |
download | vaadin-framework-41da2fb8303ae66fc12ee4926726c0327fa44573.tar.gz vaadin-framework-41da2fb8303ae66fc12ee4926726c0327fa44573.zip |
Fixes icket #3038: demo main page broken if scrollbars in use (FF, SA)
Leaves IE6 alone, since it doesn't support max-width.
svn changeset:8324/svn branch:6.0
Diffstat (limited to 'WebContent/index.html')
-rw-r--r-- | WebContent/index.html | 52 |
1 files changed, 21 insertions, 31 deletions
diff --git a/WebContent/index.html b/WebContent/index.html index 5060cf95ee..0cfad20cb7 100644 --- a/WebContent/index.html +++ b/WebContent/index.html @@ -27,45 +27,38 @@ </head> <body> - <div id="header" align="center"> - <div id="header-contentcolumn" align="left"> - <h1><!-- Vaadin – thinking of U and I--></h1> - <div id="version" align="right"> + <div id="header"> + <h1>Vaadin – thinking of U and I</h1> + <div id="version"> <strong>Version @version@</strong> <a href="release-notes.html" class="release-notes" title="Read the release notes for this Vaadin version">Release Notes</a> <span class="version-check">(<a href="http://www.itmill.com/downloads/itmill-toolkit.htm?checkVersion" title="Check if you have the latest Vaadin version (requires Internet connection)">check for latest version</a>)</span> </div> - </div> </div> <!-- /header --> - <div id="subheader" align="center"> - <div class="contentcolumn" align="left"> - <strong>Great, you’ve made it this far with Vaadin. Now let’s get started for real!</strong> - <div class="links" align="right"> - <a href="http://vaadin.com/forum" title="Open vaadin.com/forum">vaadin.com/forum</a> - <a href="http://dev.vaadin.com" title="Open dev.vaadin.com">dev.vaadin.com</a> - <a href="http://www.vaadin.com" title="Open www.vaadin.com">www.vaadin.com</a> - </div> - </div> + <div id="subheader"> + <strong>Great, you’ve made it this far with Vaadin. Now let’s get started for real!</strong> + <div class="links"> + <a href="http://vaadin.com/forum" title="Open vaadin.com/forum">vaadin.com/forum</a> + <a href="http://dev.vaadin.com" title="Open dev.vaadin.com">dev.vaadin.com</a> + <a href="http://www.vaadin.com" title="Open www.vaadin.com">www.vaadin.com</a> + </div> </div> <!-- /subheader --> - <div id="upfront" align="center"> - <div class="contentcolumn"> - <div id="sampler"> - <h2>Vaadin Sampler</h2> - <p>Sampler contains examples of most features, as well as combination examples and useful UI patterns that you can use simply by copy-pasting the code.</p> + <div id="upfront"> + <div id="sampler"> + <h2>Vaadin Sampler</h2> + <p>Sampler contains examples of most features, as well as combination examples and useful UI patterns that you can use simply by copy-pasting the code.</p> <p><a href="sampler/" class="demoapp">Start Sampler »</a> - </div> - <div id="eclipse"> - <h2>Vaadin Eclipse Plugin</h2> - <p>The easiest way to start working with Vaadin is to use Eclipse IDE and download the Vaadin Eclipse plugin from our website.</p> - <p><a href="http://www.vaadin.com/eclipse">How to install the Vaadin Eclipse Plugin »</a> - </div> + </div> + <div id="eclipse"> + <h2>Vaadin Eclipse Plugin</h2> + <p>The easiest way to start working with Vaadin is to use Eclipse IDE and download the Vaadin Eclipse plugin from our website.</p> + <p><a href="http://www.vaadin.com/eclipse">How to install the Vaadin Eclipse Plugin »</a> </div> </div> <!-- /upfront --> - <div id="content" align="center"> - <div class="contentcolumn"> + <div id="content"> <div id="demos"> <h3>Additional demos</h3> <ul><li><a class="demoapp" href="Reservr">Reservr – reservation application</a> (<a href="docs/example-source/com/vaadin/demo/reservation">sources</a>)</li> @@ -96,11 +89,9 @@ <li><a href="http://www.vaadin.com/forum">Forum »</a></li> </ul> </div> <!-- /docs --> - </div> <!-- /contentcolumn --> </div> <!-- /content --> - <div id="footer" align="center"> - <div class="contentcolumn"> + <div id="footer"> <div id="open-source"> <h4>Open Source Development and Licenses</h4> <p>Vaadin is developed as an Open Source software and its core is licensed under @@ -116,7 +107,6 @@ <p>We are also glad to help you hands on or even do the work for you – which ever you prefer.</p> <p>Read more about the <a href="http://www.vaadin.com/services/">Services</a> or the <a href="http://www.vaadin.com/support/">Support</a> alternatives.</p> </div> - </div> </div> <!-- /footer --> </body> |