Re: [css-d] Google Chrome :: image no-show

2009-06-17 Thread Maarten Sander
Hi David,

 re: rough layout http://chelseacreekstudio.com/dl/

 On landing, the text-image style, (Zapfino-- top of the left column)
 does not appear.
 On a drag to a narrower -- or wider -- window, the text-image will appear.
 Reproducible: always.

 The text-image should always appear on landing regardless of the window
 width. And does so in all my other Mac/Parallels XP .

 Can anyone reproduce Chrome's bad behavior in native XP/Vista?

FWIW, I've reproduced it on a Chromium build for Linux (3.0.187.0).

When I inspect the image when it's not visible, Chromium shows the
following under 'Computed Style':

  display: block;
  float: right;
  height: 0px;
  margin-top: 10px;
  max-width: 96%;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 0px;

Note the zero height and width. After resizing the window, the now
visible image has the following computed style:

  display: block;
  float: right;
  height: 198px;
  margin-top: 10px;
  max-width: 96%;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 205px;

Height and width are now computed correctly. Perhaps setting the
values manually in your CSS will fix the issue?

Regards,

Maarten

--
Privateer Software Development (www.privateer-software.nl)
* web usability, web accessibility, web development
* cross-platform software development
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Creating your own stylesheet for a website

2009-05-04 Thread Maarten Sander
Sarah,

 I go to a website fairly regularly and their styles are horrible.
 It's just too painful for me to look at anymore. Is there away for me
 to create a Stylesheet for it and have my browser automatically
 override there styles? I know to many of you this might sound
 horrible but don't worry no designers feelings will get hurt... I'm
 sure that no designers were used in making the site. 

If you are using Firefox, you could try the Stylish add-on:
https://addons.mozilla.org/en-US/firefox/addon/2108

Stylish allows easy management of user styles. User styles empower your
browsing experience by letting you fix ugly sites, customize the look of
your browser or mail client, or just have fun. With an online repository
at userstyles.org, you don't even need to know how to write styles
yourself; just a couple clicks and the chosen style is applied. Stylish
is to CSS what Greasemonkey is to JavaScript, and unlike other methods
of using user styles, most styles take effect immediately.

Regards,

Maarten
__
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/