Hi guys…
Not sure if I'm the only one (haven't had time to read the latest docs/updates) but when I visit groups.drupal.org/los-angeles the mission box overflows onto the right side of the page and consequently the page looks... "weird" -- like so:
Currently the CSS code causing it to look like that -- #mission .box -- looks like this (from what I could tell):
#mission .box {
margin-left:220px;
margin-right:220px;
background:#FFDBA1 url(/sites/all/themes/bluebeach/examples.png) no-repeat 100% 50%;
border:1px solid #FFB643;
color:#4E3000;
font-size:1.1em;
min-width:520px;
_float:left;
_margin-left:20px;
_margin-right:20px;
}
With the min-width:520px; part changed to a lower value, or better yet eliminated altogether (unless that causes issues elsewhere), the screen renders fine:
(FYI here's the "after" code):
#mission .box {
margin-left:220px;
margin-right:220px;
background:#FFDBA1 url(/sites/all/themes/bluebeach/examples.png) no-repeat 100% 50%;
border:1px solid #FFB643;
color:#4E3000;
font-size:1.1em;
_float:left;
_margin-left:20px;
_margin-right:20px;
}
Can we implement this?
(Moved to webmasters' queue per http://groups.drupal.org/node/44460#comment-118826)
[Edited by kiamlaluno to remove all the <strong> tags]
Comments
Comment #1
christefano commentedUpdating the title. This isn't restricted to the LA Drupal group.
Comment #2
avpadernoComment #3
gregglesThe way css works on g.d.o we need to add this as a change to the gdo specific stylesheet.
What would an override that we could place later?
Something like:
If you find me in irc I can fix this quickly.
Comment #4
gregglesI'm not sure this is still a problem. Marking won't fix since my priority is getting bluecheese deployed rather than fixing bluebeach.