Closed
Bug 499131
Opened 16 years ago
Closed 16 years ago
Layout problem on blog.getfirebug.com
Categories
(mozilla.org Graveyard :: Server Operations, task)
mozilla.org Graveyard
Server Operations
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: Honza, Assigned: justdave)
Details
Attachments
(1 file)
|
243 bytes,
patch
|
Details | Diff | Splinter Review |
There is a small problem with CSS layout at blog.getfirebug.com
Patch that fixes the problem in
http://blog.getfirebug.com/wp-content/themes/firebug/blog.css
is attached.
| Reporter | ||
Updated•16 years ago
|
Whiteboard: [checkin-needed]
| Reporter | ||
Comment 1•16 years ago
|
||
Rob, should I cc/ask somebody to get this committed?
Honza
Comment 2•16 years ago
|
||
yea, not sure who though.
CC'ing oremj since he's helped with these before. Let us know if there's a better way to notify people for these.
Comment 3•16 years ago
|
||
Yes, file these bugs against IT directly.
Assignee: nobody → server-ops
Component: getfirebug.com → Server Operations
OS: Windows XP → All
Product: Websites → mozilla.org
QA Contact: getfirebug-com → mrz
Hardware: x86 → All
Whiteboard: [checkin-needed]
Version: unspecified → other
Comment 4•16 years ago
|
||
will do, IN THE FUTURE!
| Assignee | ||
Comment 5•16 years ago
|
||
Done. I'm not sure it entirely fixed the problem though... The footer still looks a bit jumbled to me.
Assignee: server-ops → justdave
| Assignee | ||
Comment 6•16 years ago
|
||
OK, I think I got it looking right now. There was a class missing on one of the five instances of the navigation links (the one on the front page), and also needed additional style...
--- index.php.orig 2009-06-20 22:23:45.467243000 -0700
+++ index.php 2009-06-20 22:25:25.546063000 -0700
@@ -21,7 +21,7 @@
<?php endwhile; ?>
- <div>
+ <div class="navigation">
<div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
--- blog.css.orig 2009-06-20 22:28:11.926516000 -0700
+++ blog.css 2009-06-20 22:34:25.467603000 -0700
@@ -40,3 +40,9 @@
.post {
clear:left;
}
+.navigation {
+ clear:both;
+}
+.footer {
+ clear:both;
+}
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Updated•10 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•