Re: [css-d] android blackberry emulators

2012-07-03 Thread Sandy



http://android-emulator.org/ http://blackberry-emulator.org/
http://tablet-emulator.org/

if someone has the device and could compare the version offered up
by the emulator to the real thing and let me know if the emulator
is somewhat accurate I would be very grateful.

What are your favourite emulators? Screen capture services? Other
ways of checking various browser and hardware combinations?




Without getting into details, I develop for android and iOS products
(iPhone, iPad) and I don't concern myself with the others. From
several different sources, those two hold over 80 percent of the
market and their share is growing.

You can also sign up for Browser Cam -- they support several
different devices.


Hi Tedd,

Thanks for taking the time to answer.

I am looking for emulators and screen capture services mostly because 
browsercam, a service that I relied on for years, is closing. My 
membership has expired

http://www.browsercam.com/important-message/

and I find myself a bit at sea.

Do you know of any comparable services out there?

http://android-emulator.org/
is this a reasonably accurate emulator?

thanks!
Sandy

__
css-discuss [css-d@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] android blackberry emulators

2012-07-03 Thread Barney Carroll
http://ripple.tinyhippos.com/

For Webkit-based Blackberrys, at least, Ripple is officially supported by
RIM, who manufacture Blackberries. Which is a good start.

Regards,
Barney Carroll

barney.carr...@gmail.com
+44 7429 177278

barneycarroll.com
__
css-discuss [css-d@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] android blackberry emulators

2012-07-03 Thread Sandy

http://ripple.tinyhippos.com/

For Webkit-based Blackberrys, at least, Ripple is officially supported by
RIM, who manufacture Blackberries. Which is a good start.


Barney - thanks! I've just installed this and will check it out soon.

best regards,
Sandy
__
css-discuss [css-d@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/


[css-d] Close the GAP

2012-07-03 Thread Alan (Neweb Ireland)

Hi,
I'm having problems closing the gap on the nav menu for the following site.
http://newebirl.ie/mnsite/

I'd like the green bar (nav) to be flush with the image above it and the 
gray box under it so you don't see any white space.


Here is the CSS I'm using:

CSS:
#masthead {width: 950px; margin: 0 auto 0 auto; background: transparent; 
clear:both;}

.logo {float: left; margin: 10px 0 0 2px; width: 310px; }
.logo img {border: 0; }
.mastheadimg { border-top: 5px solid #056839; margin: 0px; padding: 0px;}
.slogan { position:relative; float: right; width: 300px; height: 40px; 
clear: right; margin: 30px 10px 0 0; color: #CCC; text-align: right;}
.social { position:relative; float: right; width: 300px; height: 40px; 
clear: right; text-align: right;}


/* Menu master nav Settings */
#mainNav{display: block;width: 950px;margin: 0 auto 0 auto; background: 
url(images/menubar.png) repeat-x top left;}

#mainNav ul { margin: 5px 0 5px 0; padding: 5px 0 5px 10px;}
#mainNav li {display: inline; list-style:none; padding: 0 20px 0 0;}
#mainNav li a {color: #fff; text-decoration: none; font-weight: bold;}
#mainNaV li a:hover {text-decoration: underline;}

This is the page code:
div id=masthead
div class=logoa href=?php echo get_option('home'); ?img 
src=http://newebirl.ie/wp-content/themes/cthemeMN/images/mnlogo.png; 
alt=thevickerys/a/div

div class=slogan?php bloginfo( 'description' ); ?/div
div class=mastheadimgimg 
src=http://newebirl.ie/wp-content/themes/cthemeMN/images/mastheadbg.jpg; alt=Mediation 
Now//div

/div
!-- Master Nav Area --
div id=mainNav?php wp_nav_menu( $args ); ?/div

I just can't get that gap closed !!!
Anyone got any ideas?

Alan
__
css-discuss [css-d@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] Close the GAP

2012-07-03 Thread Sandy



I'm having problems closing the gap on the nav menu for the following site.
http://newebirl.ie/mnsite/

I'd like the green bar (nav) to be flush with the image above it and the
gray box under it so you don't see any white space.


not sure how you feel about negative margins, but you can try
#mainNav ul { margin: -3px 0px 5px 0; padding: 5px 0 5px 10px;}

hope that helps.
best regards,
Sandy
__
css-discuss [css-d@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] Close the GAP

2012-07-03 Thread Beat Beer
why don't you attach mastheadbg.jpg as background to  

#masthead {
background: url(../mastheadbg.jpg) no-repeat right bottom;
}

that line will disappear and it is even more semantic as this is decoration and 
not content.



Am 03.07.2012 um 15:36 schrieb Alan (Neweb Ireland):

 Hi,
 I'm having problems closing the gap on the nav menu for the following site.
 http://newebirl.ie/mnsite/
 
 I'd like the green bar (nav) to be flush with the image above it and the gray 
 box under it so you don't see any white space.
 
 Here is the CSS I'm using:
 
 CSS:
 #masthead {width: 950px; margin: 0 auto 0 auto; background: transparent; 
 clear:both;}
 .logo {float: left; margin: 10px 0 0 2px; width: 310px; }
 .logo img {border: 0; }
 .mastheadimg { border-top: 5px solid #056839; margin: 0px; padding: 0px;}
 .slogan { position:relative; float: right; width: 300px; height: 40px; clear: 
 right; margin: 30px 10px 0 0; color: #CCC; text-align: right;}
 .social { position:relative; float: right; width: 300px; height: 40px; clear: 
 right; text-align: right;}
 
 /* Menu master nav Settings */
 #mainNav{display: block;width: 950px;margin: 0 auto 0 auto; background: 
 url(images/menubar.png) repeat-x top left;}
 #mainNav ul { margin: 5px 0 5px 0; padding: 5px 0 5px 10px;}
 #mainNav li {display: inline; list-style:none; padding: 0 20px 0 0;}
 #mainNav li a {color: #fff; text-decoration: none; font-weight: bold;}
 #mainNaV li a:hover {text-decoration: underline;}
 
 This is the page code:
 div id=masthead
 div class=logoa href=?php echo get_option('home'); ?img 
 src=http://newebirl.ie/wp-content/themes/cthemeMN/images/mnlogo.png; 
 alt=thevickerys/a/div
 div class=slogan?php bloginfo( 'description' ); ?/div
 div class=mastheadimgimg 
 src=http://newebirl.ie/wp-content/themes/cthemeMN/images/mastheadbg.jpg; 
 alt=Mediation Now//div
 /div
 !-- Master Nav Area --
 div id=mainNav?php wp_nav_menu( $args ); ?/div
 
 I just can't get that gap closed !!!
 Anyone got any ideas?
 
 Alan
 __
 css-discuss [css-d@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/



Freundliche Grüsse
Beat Beer

-- 

stardesign
Beat Beer
untere Kirchenzelg 5
3115 Gerzensee
Switzerland

phone: ++41 31 781 4620
fax: ++41 31 781 4720
mobile: ++41 79 325 1448
mail: i...@stardesign.ch
web: www.stardesign.ch

10 Jahre stardesign   ...einfach gutes webdesign

__
css-discuss [css-d@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] Close the GAP

2012-07-03 Thread Eric Heitz

On 7/3/12 10:05 AM, Sandy wrote:


I'm having problems closing the gap on the nav menu for the following 
site.

http://newebirl.ie/mnsite/

I'd like the green bar (nav) to be flush with the image above it and the
gray box under it so you don't see any white space.


not sure how you feel about negative margins, but you can try
#mainNav ul { margin: -3px 0px 5px 0; padding: 5px 0 5px 10px;}

hope that helps.
best regards,
Sandy

Try:

#masthead {
  width:950px;

1. margin:0 auto;
2. height:200px;

}

#mainNav ul{

1. margin:0px 0 5px 0;
2. padding:5px 0 5px 10px;

}

Specified the height in the masthead and removed the margin on the ul.

See what happens.
Eric
__
css-discuss [css-d@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] Close the GAP

2012-07-03 Thread Philippe Wittenbergh

Le 3 juil. 2012 à 22:36, Alan (Neweb Ireland) a écrit :

 I'm having problems closing the gap on the nav menu for the following site.
 http://newebirl.ie/mnsite/
 
 I'd like the green bar (nav) to be flush with the image above it and the gray 
 box under it so you don't see any white space.

The white space before the green navigation bar comes from the large image in 
the header. Images are by default inline, and rest on the baseline of text (to 
leave space for descenders).
You can set the image to be display: block to eliminate that gap (but see also 
below).

The gap after the green navigation is caused by the margins on the nested ul 
(#mainNav ul), those are collapsing trough the parent div, causing a gap.

#mainNav ul { margin: 0; } will fix that.

Philippe
--
Philippe Wittenbergh
http://l-c-n.com/






__
css-discuss [css-d@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] Close the GAP

2012-07-03 Thread David Postill
On Tue, 03 Jul 2012 14:36:36 +0100, Alan (Neweb Ireland) wrote:

| Hi,
| I'm having problems closing the gap on the nav menu for the following site.
| http://newebirl.ie/mnsite/
| 
| I'd like the green bar (nav) to be flush with the image above it and the 
| gray box under it so you don't see any white space.

Fix the errors first :)

http://validator.w3.org/check?verbose=1uri=http%3A%2F%2Fnewebirl.ie%2Fmnsite%2F
-- 
David Postill
Dance your Life - Biodanza in Alkmaar and Castricum, Holland - 
http://www.danceyourlife.eu
__
css-discuss [css-d@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/


[css-d] mac vs pc

2012-07-03 Thread S Baily-Gould
Hi, 

I’m a bit of a CSS newbie when it comes to Mac vs. PC issues. A client is
using Hubspot for their site and I just added deleted content and they
wanted to know why their pages look different in Mac Safari and Firefox vs
my PC Safari and Firefox. I have no idea. I understand sometimes I have to
add to style sheet for IE problems, but I have never encountered OS display
problems. 

The specific problems are that the left-hand nav pane text that’s on more
than one line is breaking badly on Mac, and the footer is breaking zip code
in bad place on Mac. And under the heading “In the Works” the text “Painting
a Map of Sixteenth-Century Mexico City” doesn’t left align neatly, as it
does on PC.
“That’s the reason we noticed a difference. On PC, everything A-OK. I don’t
know how to fix this with CSS. Any specific advice is greatly welcome.

Revised home page is at http://www.vernassoc.com/home-copy-0/

Style sheet is as follows:

a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:active {text-decoration: none;}
a:hover {text-decoration: underline; color: blue;}


#duxbury_content {
border-right: 1px solid #C9C9CD;
}

#duxbury_two-column, #duxbury_three-column {
background: #FF url(/Portals/54645/images/template/col1_bg.jpg)
repeat-y left !important;
}

#duxbury_menu ul li a {
background: transparent url(/Portals/54645/images/template/menu_bg.gif)
no-repeat left center !important;
padding: 8px 0 8px 18px !important;
width: auto !important;
}

#duxbury_menu ul li a:hover {
background: transparent
url(/Portals/54645/images/template/menu_hover_bg.gif) no-repeat left center
!important;
}

#duxbury_menu ul li.selectedtab a {
background: transparent
url(/Portals/54645/images/template/menu_selected_bg.gif) no-repeat left
center !important;
}

#duxbury_menu ul li.childitem1 a, #duxbury_menu ul li.childitem1 a:hover,
#duxbury_menu ul li.selectedtab ul li.childitem1.selectedtab a {
padding: 8px 0 8px 26px !important;
background: transparent !important;
}

#duxbury_menu ul li {
height:100% !important;
_height:100% !important;
border-right: 0 !important;
}

#duxbury_menu ul li.first {
border-top: 0 !important;
}

#duxbury_menu .radmenu .item a span {
font-weight: normal !important;
font-size: 0.86em !important;
white-space:normal !important;
padding: 0 !important;
line-height: 110% !important;
}

#duxbury_footer {
border-top: 10px solid #E6E6FF;
width: 751px !important;
margin-left: 9px !important;
}

#duxbury_footer p.copyright {
padding: 10px 0 0 0 !important;
}

#duxbury_col1 {
width: 17.9% !important;
}

#duxbury_two-column #duxbury_col2 {
width: 82% !important;
}

#duxbury_three-column #duxbury_col2 {
width: 57% !important;
}

#duxbury_content #duxbury_col1 div.block div.pad, #duxbury_content
#duxbury_col3 div.block div.pad {
padding: 8px 6px !important;
margin: 0 4px !important;
}

#duxbury_col2 h1 {
border-bottom: 1px solid #CC;
}

h4 {
font-size: 1.1em !important;
font-style:italic;
color: #99 !important;
margin: 4px 0 !important;
}

h5 {
font-size: 0.9em !important;
color: #00 !important;
margin: 4px 0 !important;
}

h6 {
font-size: 1.2em !important;
font-family: Arial,Arial,sans-serif;
color: #99 !important;
margin: 4px 0 !important;
}

   
#duxbury_col1 h4, #duxbury_col3 h4 {
font-size: 1.1em !important;
color: #99 !important;
font-weight: normal !important;
line-height: 125% !important;
margin: 4px 0 !important;
}

#duxbury_col2 table, td {
font-size: 1em !important;
}

#duxbury_content div.block h3 {
font-size: 1.1em !important;
font-weight: bold !important;
}

#duxbury_col2 h2 {
font-size: 1.2em !important;
}

#duxbury_col2 ul li {
list-style-type: disc !important;
}




Me: Life is not a dress rehearsal.
Dad: Spark, spark, spark. :)
Website development  editorial services at  www.CatWhiskerStudio.com



__
css-discuss [css-d@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] android blackberry emulators

2012-07-03 Thread Rob Crowther

On 03/07/12 13:20, Sandy wrote:


http://android-emulator.org/
is this a reasonably accurate emulator?

I've no idea about that site, but the official Android SDK includes an 
emulator:


http://developer.android.com/tools/help/emulator.html

Rob
__
css-discuss [css-d@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/


[css-d] mac vs pc

2012-07-03 Thread S Baily-Gould
Sorry, Theresa from the CSS list pointed out that you have to log in to
Hubspot to help. The same page is already live at the client's site at
http://www.vernassoc.com/  Same issues I mentioned below, except for the
last one, regarding the Painting a Map of Sixteenth-Century Mexico City
text because that doesn't exist in original home page. I don't think I am
authorized to give you the Hubspot login. But again live site has same
problems. 
Thanks in advance for any help,
Sydney

-Original Message-
From: S Baily-Gould [mailto:sbailygo...@comcast.net] 
Sent: Tuesday, July 03, 2012 6:32 PM
To: 'css-d@lists.css-discuss.org'
Subject: mac vs pc

Hi, 

I’m a bit of a CSS newbie when it comes to Mac vs. PC issues. A client is
using Hubspot for their site and I just added deleted content and they
wanted to know why their pages look different in Mac Safari and Firefox vs
my PC Safari and Firefox. I have no idea. I understand sometimes I have to
add to style sheet for IE problems, but I have never encountered OS display
problems. 

The specific problems are that the left-hand nav pane text that’s on more
than one line is breaking badly on Mac, and the footer is breaking zip code
in bad place on Mac. And under the heading “In the Works” the text “Painting
a Map of Sixteenth-Century Mexico City” doesn’t left align neatly, as it
does on PC.
“That’s the reason we noticed a difference. On PC, everything A-OK. I don’t
know how to fix this with CSS. Any specific advice is greatly welcome.

Revised home page is at http://www.vernassoc.com/home-copy-0/

Style sheet is as follows:

a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:active {text-decoration: none;}
a:hover {text-decoration: underline; color: blue;}


#duxbury_content {
border-right: 1px solid #C9C9CD;
}

#duxbury_two-column, #duxbury_three-column {
background: #FF url(/Portals/54645/images/template/col1_bg.jpg)
repeat-y left !important; }

#duxbury_menu ul li a {
background: transparent url(/Portals/54645/images/template/menu_bg.gif)
no-repeat left center !important;
padding: 8px 0 8px 18px !important;
width: auto !important;
}

#duxbury_menu ul li a:hover {
background: transparent
url(/Portals/54645/images/template/menu_hover_bg.gif) no-repeat left center
!important; }

#duxbury_menu ul li.selectedtab a {
background: transparent
url(/Portals/54645/images/template/menu_selected_bg.gif) no-repeat left
center !important; }

#duxbury_menu ul li.childitem1 a, #duxbury_menu ul li.childitem1 a:hover,
#duxbury_menu ul li.selectedtab ul li.childitem1.selectedtab a {
padding: 8px 0 8px 26px !important;
background: transparent !important;
}

#duxbury_menu ul li {
height:100% !important;
_height:100% !important;
border-right: 0 !important;
}

#duxbury_menu ul li.first {
border-top: 0 !important;
}

#duxbury_menu .radmenu .item a span {
font-weight: normal !important;
font-size: 0.86em !important;
white-space:normal !important;
padding: 0 !important;
line-height: 110% !important;
}

#duxbury_footer {
border-top: 10px solid #E6E6FF;
width: 751px !important;
margin-left: 9px !important;
}

#duxbury_footer p.copyright {
padding: 10px 0 0 0 !important;
}

#duxbury_col1 {
width: 17.9% !important;
}

#duxbury_two-column #duxbury_col2 {
width: 82% !important;
}

#duxbury_three-column #duxbury_col2 {
width: 57% !important;
}

#duxbury_content #duxbury_col1 div.block div.pad, #duxbury_content
#duxbury_col3 div.block div.pad {
padding: 8px 6px !important;
margin: 0 4px !important;
}

#duxbury_col2 h1 {
border-bottom: 1px solid #CC;
}

h4 {
font-size: 1.1em !important;
font-style:italic;
color: #99 !important;
margin: 4px 0 !important;
}

h5 {
font-size: 0.9em !important;
color: #00 !important;
margin: 4px 0 !important;
}

h6 {
font-size: 1.2em !important;
font-family: Arial,Arial,sans-serif;
color: #99 !important;
margin: 4px 0 !important;
}

   
#duxbury_col1 h4, #duxbury_col3 h4 {
font-size: 1.1em !important;
color: #99 !important;
font-weight: normal !important;
line-height: 125% !important;
margin: 4px 0 !important;
}

#duxbury_col2 table, td {
font-size: 1em !important;
}

#duxbury_content div.block h3 {
font-size: 1.1em !important;
font-weight: bold !important;
}

#duxbury_col2 h2 {
font-size: 1.2em !important;
}

#duxbury_col2 ul li {
list-style-type: disc !important;
}




Me: Life is not a dress rehearsal.
Dad: Spark, spark, spark. :)
Website development  editorial services at  www.CatWhiskerStudio.com



__
css-discuss [css-d@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] mac vs pc

2012-07-03 Thread Theresa Jennings
Well, for the link you just gave us, you have *41* HTML validation errors, and 
*86* css validation errors. You have to get those resolved first. I find that 
when my CSS and HTML validate, I have very few problems across the current 
browsers, across the platforms, and I'm a die-hard Mac user who also tests on 
Windows on my virtual machines. That's not to say you won't encounter problems, 
but you'll encounter much fewer of them.


Theresa Jennings


On Jul 3, 2012, at 4:22 PM, S Baily-Gould wrote:

 Sorry, Theresa from the CSS list pointed out that you have to log in to
 Hubspot to help. The same page is already live at the client's site at
 http://www.vernassoc.com/  Same issues I mentioned below, except for the
 last one, regarding the Painting a Map of Sixteenth-Century Mexico City
 text because that doesn't exist in original home page. I don't think I am
 authorized to give you the Hubspot login. But again live site has same
 problems. 
 Thanks in advance for any help,
 Sydney
 
 -Original Message-
 From: S Baily-Gould [mailto:sbailygo...@comcast.net] 
 Sent: Tuesday, July 03, 2012 6:32 PM
 To: 'css-d@lists.css-discuss.org'
 Subject: mac vs pc
 
 Hi, 
 
 I’m a bit of a CSS newbie when it comes to Mac vs. PC issues. A client is
 using Hubspot for their site and I just added deleted content and they
 wanted to know why their pages look different in Mac Safari and Firefox vs
 my PC Safari and Firefox. I have no idea. I understand sometimes I have to
 add to style sheet for IE problems, but I have never encountered OS display
 problems. 
 
 The specific problems are that the left-hand nav pane text that’s on more
 than one line is breaking badly on Mac, and the footer is breaking zip code
 in bad place on Mac. And under the heading “In the Works” the text “Painting
 a Map of Sixteenth-Century Mexico City” doesn’t left align neatly, as it
 does on PC.
 “That’s the reason we noticed a difference. On PC, everything A-OK. I don’t
 know how to fix this with CSS. Any specific advice is greatly welcome.
 
 Revised home page is at http://www.vernassoc.com/home-copy-0/
 
 Style sheet is as follows:
 
 a:link {text-decoration: none;}
 a:visited {text-decoration: none;}
 a:active {text-decoration: none;}
 a:hover {text-decoration: underline; color: blue;}
 
 
 #duxbury_content {
border-right: 1px solid #C9C9CD;
 }
 
 #duxbury_two-column, #duxbury_three-column {
background: #FF url(/Portals/54645/images/template/col1_bg.jpg)
 repeat-y left !important; }
 
 #duxbury_menu ul li a {
background: transparent url(/Portals/54645/images/template/menu_bg.gif)
 no-repeat left center !important;
padding: 8px 0 8px 18px !important;
width: auto !important;
 }
 
 #duxbury_menu ul li a:hover {
background: transparent
 url(/Portals/54645/images/template/menu_hover_bg.gif) no-repeat left center
 !important; }
 
 #duxbury_menu ul li.selectedtab a {
background: transparent
 url(/Portals/54645/images/template/menu_selected_bg.gif) no-repeat left
 center !important; }
 
 #duxbury_menu ul li.childitem1 a, #duxbury_menu ul li.childitem1 a:hover,
 #duxbury_menu ul li.selectedtab ul li.childitem1.selectedtab a {
padding: 8px 0 8px 26px !important;
background: transparent !important;
 }
 
 #duxbury_menu ul li {
height:100% !important;
_height:100% !important;
border-right: 0 !important;
 }
 
 #duxbury_menu ul li.first {
border-top: 0 !important;
 }
 
 #duxbury_menu .radmenu .item a span {
font-weight: normal !important;
font-size: 0.86em !important;
white-space:normal !important;
padding: 0 !important;
line-height: 110% !important;
 }
 
 #duxbury_footer {
border-top: 10px solid #E6E6FF;
width: 751px !important;
margin-left: 9px !important;
 }
 
 #duxbury_footer p.copyright {
padding: 10px 0 0 0 !important;
 }
 
 #duxbury_col1 {
width: 17.9% !important;
 }
 
 #duxbury_two-column #duxbury_col2 {
width: 82% !important;
 }
 
 #duxbury_three-column #duxbury_col2 {
width: 57% !important;
 }
 
 #duxbury_content #duxbury_col1 div.block div.pad, #duxbury_content
 #duxbury_col3 div.block div.pad {
padding: 8px 6px !important;
margin: 0 4px !important;
 }
 
 #duxbury_col2 h1 {
border-bottom: 1px solid #CC;
 }
 
 h4 {
font-size: 1.1em !important;
font-style:italic;
color: #99 !important;
margin: 4px 0 !important;
 }
 
 h5 {
font-size: 0.9em !important;
color: #00 !important;
margin: 4px 0 !important;
 }
 
 h6 {
font-size: 1.2em !important;
font-family: Arial,Arial,sans-serif;
color: #99 !important;
margin: 4px 0 !important;
 }
 
 
 #duxbury_col1 h4, #duxbury_col3 h4 {
font-size: 1.1em !important;
color: #99 !important;
font-weight: normal !important;
line-height: 125% !important;
margin: 4px 0 !important;
 }
 
 #duxbury_col2 table, td {
font-size: 1em !important;
 }
 
 #duxbury_content div.block h3 {
font-size: 1.1em !important;

Re: [css-d] android blackberry emulators

2012-07-03 Thread sfeldman



I've no idea about that site, but the official Android SDK includes an
emulator:

http://developer.android.com/tools/help/emulator.html


Rob - Thank you - this looks like it's got to be accurate!

best regards,
Sandy
__
css-discuss [css-d@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] android blackberry emulators

2012-07-03 Thread David Laakso
 I've no idea about that site, but the official Android SDK includes an
 emulator:

http://developer.android.com/tools/help/emulator.html

Rob - Thank you - this looks like it's got to be accurate!

 best regards,
 Sandy


Use whatever emulator or simulator does it for you.

If accuracy is your bag in the end you'll want to break down and
purchase a mobile device and save the receipt for your business
accountant. In my experience none of the emulators/simulators really
give little more than a very cursory view of the page and its
spacing...

Best,
David Laakso

-- 
Chelsea Creek Studio
http://ccstudi.com
__
css-discuss [css-d@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] android blackberry emulators

2012-07-03 Thread Philippe Wittenbergh

Le 4 juil. 2012 à 11:25, David Laakso a écrit :

 Use whatever emulator or simulator does it for you.
 
 If accuracy is your bag in the end you'll want to break down and
 purchase a mobile device and save the receipt for your business
 accountant. In my experience none of the emulators/simulators really
 give little more than a very cursory view of the page and its
 spacing…

I'm with David here. Simulators/emulators don't bring you very far.

As far as layout ( css) is concerned, most of the testing can be done using 
Chrome and Safari, as most devices use Webkit based browsers (probably better 
Safari release builds, as Chrome has a much faster release cycle, esp compared 
to the default browser included with Android devices… cough cough upgrade path 
?).  Just resize your window to evaluate your layout at various viewport 
dimensions. The added bonus is that you can use the build in developer tools 
(Webkit Inspector) to troubleshoot.

Where Simulators of all kind fail completely is testing interaction design. 
There are so many pages out there that are very hard to use, simply because it 
is near impossible to click on links with fatty fingers - the touchable area is 
simply too small. Remember that a mouse pointer is very precise device with a 
_small_ tip. And that is only one issue. Nothing beats the real device for that.

Philippe
--
Philippe Wittenbergh
http://l-c-n.com/






__
css-discuss [css-d@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] ADMIN: (no subject)

2012-07-03 Thread Eric A. Meyer
   Sorry for the spam, folks.  The offending account has been 
unsubscribed and banned.


--
Eric A. Meyer (http://meyerweb.com/eric/), List Chaperone
CSS is much too interesting and elegant to be not taken seriously.
  -- Martina Kosloff (http://mako4css.com/)
__
css-discuss [css-d@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/