Hi guys, I''ve tried asking this on the Facebox google group but the group seems to be inactive. I''m trying out facebox for prototype and everything seems to be fine except for this weird graphical glitch. http://imagebin.org/67873 I can''t figure out what''s wrong. There rounded edges seem to replicate itself across the entire span of the screen. Can someone help? Warmest regards, David References: [1] m4n''s prototype-for-facebox http://github.com/m4n/facebox-for-prototype --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On Oct 15, 10:14 pm, David Chua <zhc...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi guys, > > I''ve tried asking this on the Facebox google group but the group seems to be > inactive. > > I''m trying out facebox for prototype and everything seems to be fine > except for this weird graphical glitch. > > http://imagebin.org/67873 > > I can''t figure out what''s wrong. There rounded edges seem to replicate > itself across the entire span of the screen. >Best guess would be that something''s setting the width of the wrapper (that creates the edges) to 100% while leaving the inside box at the correct width. You''ll probably have more luck firing up your favorite DOM inspector (either Safari or Firebug) and going from there. --Matt Jones
Taking a look using firebug, shows a http://imagebin.org/68120 and when inspecting over the element that repeats the rounded edge, I get: #facebox .b {facebox....255468079 (line 1) background:transparent url(/images/facebox/b.png) repeat scroll 0 0; } Which then makes it weird because, according to my facebox.css its : http://pastie.org/658537 Which does not show the repeat scroll 0 0; Can someone help? David On Sat, Oct 17, 2009 at 5:30 AM, Matt Jones <al2o3cr-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > > On Oct 15, 10:14 pm, David Chua <zhc...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > Hi guys, > > > > I''ve tried asking this on the Facebox google group but the group seems to > be > > inactive. > > > > I''m trying out facebox for prototype and everything seems to be fine > > except for this weird graphical glitch. > > > > http://imagebin.org/67873 > > > > I can''t figure out what''s wrong. There rounded edges seem to replicate > > itself across the entire span of the screen. > > > > Best guess would be that something''s setting the width of the wrapper > (that creates the edges) to 100% while leaving the inside box at the > correct width. You''ll probably have more luck firing up your favorite > DOM inspector (either Safari or Firebug) and going from there. > > --Matt Jones > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
''repeat'' is the default value of that attribute; the real problem is in the width inherited from the scaffold CSS. Try commenting out that line in scaffold.css and see what happens. --Matt Jones On Oct 17, 3:14 am, David Chua <zhc...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Taking a look using firebug, shows a > > http://imagebin.org/68120 > > and when inspecting over the element that repeats the rounded edge, I get: > > #facebox .b {facebox....255468079 (line 1) > background:transparent url(/images/facebox/b.png) repeat scroll 0 0; > > } > > Which then makes it weird because, according to my facebox.css its : > > http://pastie.org/658537 > > Which does not show the repeat scroll 0 0; > > Can someone help? > > David > >