You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@roller.apache.org by ag...@apache.org on 2005/09/26 06:39:25 UTC

svn commit: r291556 - in /incubator/roller/branches/roller_2.0/web/theme: banner.jsp css-banner.jsp css-sidebar.jsp

Author: agilliland
Date: Sun Sep 25 21:39:22 2005
New Revision: 291556

URL: http://svn.apache.org/viewcvs?rev=291556&view=rev
Log:
sidebar via relative positioning.
small tweak to banner to support relative positioning.


Removed:
    incubator/roller/branches/roller_2.0/web/theme/css-banner.jsp
Modified:
    incubator/roller/branches/roller_2.0/web/theme/banner.jsp
    incubator/roller/branches/roller_2.0/web/theme/css-sidebar.jsp

Modified: incubator/roller/branches/roller_2.0/web/theme/banner.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/banner.jsp?rev=291556&r1=291555&r2=291556&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/banner.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/theme/banner.jsp Sun Sep 25 21:39:22 2005
@@ -17,14 +17,16 @@
 
 <div class="bannerBox">
 
-<!-- Transparent PNG fix for IE, thanks to Kenneth M. Kolano -->
-<div id="logoshadow" 
-   style="_background-image:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<c:out value='${model.baseURL}' />/theme/logo-shadow.png',sizingMethod='crop');">
-   <div id="logobackground">
-      <a href='<c:out value="${model.baseURL}" />/main.do' id="logoimage" 
-         style="_background-image:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<c:out value='${model.baseURL}' />/theme/transparent-logo.png', sizingMethod='crop');">
-      </a>
-   </div>
+<div id="logo">
+    <!-- Transparent PNG fix for IE, thanks to Kenneth M. Kolano -->
+    <div id="logoshadow" 
+        style="_background-image:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<c:out value='${model.baseURL}' />/theme/logo-shadow.png',sizingMethod='crop');">
+        <div id="logobackground">
+            <a href='<c:out value="${model.baseURL}" />/main.do' id="logoimage" 
+                style="_background-image:none; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<c:out value='${model.baseURL}' />/theme/transparent-logo.png', sizingMethod='crop');">
+            </a>
+        </div>
+    </div>
 </div>
 
 </div>

Modified: incubator/roller/branches/roller_2.0/web/theme/css-sidebar.jsp
URL: http://svn.apache.org/viewcvs/incubator/roller/branches/roller_2.0/web/theme/css-sidebar.jsp?rev=291556&r1=291555&r2=291556&view=diff
==============================================================================
--- incubator/roller/branches/roller_2.0/web/theme/css-sidebar.jsp (original)
+++ incubator/roller/branches/roller_2.0/web/theme/css-sidebar.jsp Sun Sep 25 21:39:22 2005
@@ -1,11 +1,7 @@
-#centercontent {
-    margin: 15px 260px 0px 10px;
+#centercontent_wrap {
+    width: 70%;
 }
-#rightcontent {
-    position: absolute;
-    top:   130px;
-    right:  10px;
-    width: 230px;
+#rightcontent_wrap {
+    width: 30%;
 }
-