From: <var...@us...> - 2021-11-22 10:28:57
|
Revision: 10673 http://sourceforge.net/p/phpwiki/code/10673 Author: vargenau Date: 2021-11-22 10:28:56 +0000 (Mon, 22 Nov 2021) Log Message: ----------- themes/blog/Kubrick.css: use CSS table-row and table-cell for layout Modified Paths: -------------- trunk/themes/blog/Kubrick.css Modified: trunk/themes/blog/Kubrick.css =================================================================== --- trunk/themes/blog/Kubrick.css 2021-11-22 09:41:55 UTC (rev 10672) +++ trunk/themes/blog/Kubrick.css 2021-11-22 10:28:56 UTC (rev 10673) @@ -99,6 +99,8 @@ } #content { + display:table-cell; + padding-left: 19px; font-size: 1.2em } @@ -274,12 +276,9 @@ color: #b85b5a; } -/* ie quirks */ #sidebar { + display: table-cell; font: 1em 'Lucida Grande', Verdana, Arial, sans-serif; - left: 1000px; - position: absolute; - z-index: 2; top: 260px; /* top, right, bottom, left */ padding: 0 10px 10px 0; @@ -375,7 +374,7 @@ } #bodyContent { - float: left; + display: table-row; padding: 0 0 20px 25px; margin: 0 0 0; width: 550px; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |