Status
People
(Reporter: Honza, Assigned: justdave)
Tracking
Details
Attachments
(1 attachment)
243 bytes,
patch
|
Details | Diff | Splinter Review |
Created attachment 383915 [details] [diff] [review] Patch for blog.css 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•10 years ago
|
Whiteboard: [checkin-needed]
(Reporter) | ||
Comment 1•10 years ago
|
||
Rob, should I cc/ask somebody to get this committed? Honza
Comment 2•10 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•10 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•10 years ago
|
||
will do, IN THE FUTURE!
(Assignee) | ||
Comment 5•10 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•10 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
Last Resolved: 10 years ago
Resolution: --- → FIXED
Updated•4 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
•