RE: [google-appengine] CSS file not updating when deploying app

2011-12-02 Thread Brandon Wirtz
Likely you set the expiration long, and the edgecache cached the old
version.  Your app.yaml specifies the settings for a default on static
files.


-Original Message-
From: google-appengine@googlegroups.com
[mailto:google-appengine@googlegroups.com] On Behalf Of Mike
Sent: Friday, December 02, 2011 2:33 AM
To: Google App Engine
Subject: [google-appengine] CSS file not updating when deploying app

Hey

I have made changes to one of my CSS files, however after deploying my
application the changes to the CSS are not being reflected in the live CSS.
If I go to the explicit version number of the app I.e.
1.myappid.appspot.com the changes to the CSS are apparent.

Is this a server caching issue that will sort itself out or do I need to do
something to fix this?

Thanks

--
You received this message because you are subscribed to the Google Groups
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-14 Thread djidjadji
Run your page through
http://validator.w3.org/

Add a DOCTYPE to your page.
Do you still use the font and center tags?
center is not allowed inside a a tag.
Why do you have a CSS file if you add style directly in the HTML?
You don't close the font and span tags?
The p that Fabrizio mentioned is a real beauty, ellipses (...)
instead of   : p style=cut ...

img src=/static/squadra.gif/ width=250px
What is the / doing inside the img tag? And the px is not allowed in
the with attribute, it is not a style specification.

Three div id=box tags? Looks more like a class.

In the CSS file all tags specify to use
font-family:Arial, Helvetica,'Liberation Sans', FreeSans, sans-serif;
Move this to the body CSS specification with a default size and
specify size differences at the other CSS specs.

If you have a group of CSS specs that show up multiple times group
them in a separate CSS class and use multiple css classes to a tag or
an id and class attribute.
Example:
CSS
.grey-border {
-moz-box-shadow: 1px 0px 6px #00;
-webkit-box-shadow: 1px 0px 6px #00;
box-shadow: 1px 0px 6px #00;
background: #CC;
background: -moz-linear-gradient(left, #CC 0%, #DD 4%,
#DD 96%, #CC 100%);
background: -webkit-gradient(linear, left top, right top,
color-stop(0%,#CC), color-stop(4%,#DD),
color-stop(96%,#DD), color-stop(100%,#CC));
filter: progid:DXImageTransform.Microsoft.gradient(
startColorstr='#CC', endColorstr='#CC',GradientType=1 );
}
/* div#box is now class .box */
.box {
margin:3px;
padding-top:1px;
padding-left:2px;
padding-right:2px;
-moz-border-radius: 2px;
border-radius: 2px;
font: 15px/1.5 Arial, Helvetica,'Liberation Sans', FreeSans, sans-serif;
height:150px;
width:190px;
float:left;
position:relative;
}

div#img {
margin: 0;
font: 15px/1.5 Arial, Helvetica,'Liberation Sans', FreeSans, sans-serif;
float:left;
position:relative;
}

In your HTML
div id=img class=grey-border
img src=static/squadra.gif width=250
/div
div class=box grey-border
Prova br
klfjlkfjldfjglkdfnbn x.,nb,cbv,
/div


2011/1/14 Fabrizio Accatino fht...@gmail.com:
 Your issue is not a GAE issue.  The CSS is the same.
 Check your HTML.  It's invalid. Look at the end of lorem ipsum block and
 the adv java-script block.

    Fabrizio

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-14 Thread Massimiliano
Thanks!
I understand now the problem with this!
I'm loading part of the application from the datastore and loading it in the
datastore through email. And it took some tags from the email html and this
is why there are tags no working well!

@djidjadji: I'm going to change the CSS and HTML as per you suggestions!

Thanks!


2011/1/14 djidjadji djidja...@gmail.com

 Run your page through
 http://validator.w3.org/

 Add a DOCTYPE to your page.
 Do you still use the font and center tags?
 center is not allowed inside a a tag.
 Why do you have a CSS file if you add style directly in the HTML?
 You don't close the font and span tags?
 The p that Fabrizio mentioned is a real beauty, ellipses (...)
 instead of   : p style=cut ...

 img src=/static/squadra.gif/ width=250px
 What is the / doing inside the img tag? And the px is not allowed in
 the with attribute, it is not a style specification.

 Three div id=box tags? Looks more like a class.

 In the CSS file all tags specify to use
 font-family:Arial, Helvetica,'Liberation Sans', FreeSans, sans-serif;
 Move this to the body CSS specification with a default size and
 specify size differences at the other CSS specs.

 If you have a group of CSS specs that show up multiple times group
 them in a separate CSS class and use multiple css classes to a tag or
 an id and class attribute.
 Example:
 CSS
 .grey-border {
-moz-box-shadow: 1px 0px 6px #00;
-webkit-box-shadow: 1px 0px 6px #00;
box-shadow: 1px 0px 6px #00;
background: #CC;
background: -moz-linear-gradient(left, #CC 0%, #DD 4%,
 #DD 96%, #CC 100%);
background: -webkit-gradient(linear, left top, right top,
 color-stop(0%,#CC), color-stop(4%,#DD),
 color-stop(96%,#DD), color-stop(100%,#CC));
filter: progid:DXImageTransform.Microsoft.gradient(
 startColorstr='#CC', endColorstr='#CC',GradientType=1 );
 }
 /* div#box is now class .box */
 .box {
margin:3px;
padding-top:1px;
padding-left:2px;
padding-right:2px;
-moz-border-radius: 2px;
border-radius: 2px;
font: 15px/1.5 Arial, Helvetica,'Liberation Sans', FreeSans,
 sans-serif;
height:150px;
width:190px;
float:left;
position:relative;
 }

 div#img {
margin: 0;
font: 15px/1.5 Arial, Helvetica,'Liberation Sans', FreeSans,
 sans-serif;
float:left;
position:relative;
 }

 In your HTML
 div id=img class=grey-border
 img src=static/squadra.gif width=250
 /div
 div class=box grey-border
 Prova br
 klfjlkfjldfjglkdfnbn x.,nb,cbv,
 /div


 2011/1/14 Fabrizio Accatino fht...@gmail.com:
  Your issue is not a GAE issue.  The CSS is the same.
  Check your HTML.  It's invalid. Look at the end of lorem ipsum block
 and
  the adv java-script block.
 
 Fabrizio

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 

My email: massimiliano.pietr...@gmail.com
My Google Wave: massimiliano.pietr...@googlewave.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-13 Thread Wim den Ouden
Did you wait for a moment and try it again?
static files are stored on a server near you, app files on the appengine server
gr
wim

2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
 Dear all,
 I'm building a web site and I'm working with the float tag on my CSS.
 The website is working well offline, but when I deploy it on the appegine
 all the box are in one column in the right (instead of some blocks floating
 on the left and some others on the right).
 Is something I need to know in using CSS for appengine? I can't find
 documentation about this.
 Regards
 Max
 --

 My email: massimiliano.pietr...@gmail.com
 My Google Wave: massimiliano.pietr...@googlewave.com

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 
gr
Wim den Ouden
Custom applications, https://e-comm.appspot.com/
Free open source E-commerce framework (web) apps,
http://code.google.com/p/relat/
Gae developer tips, http://code.google.com/p/relat/wiki/gaetips

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-13 Thread Massimiliano
Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
I can't understand why with the same browser on the same pc, offline it
works, online it doesn't.

2011/1/13 Wim den Ouden wdenou...@gmail.com

 Did you wait for a moment and try it again?
 static files are stored on a server near you, app files on the appengine
 server
 gr
 wim

 2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
  Dear all,
  I'm building a web site and I'm working with the float tag on my CSS.
  The website is working well offline, but when I deploy it on the appegine
  all the box are in one column in the right (instead of some blocks
 floating
  on the left and some others on the right).
  Is something I need to know in using CSS for appengine? I can't find
  documentation about this.
  Regards
  Max
  --
 
  My email: massimiliano.pietr...@gmail.com
  My Google Wave: massimiliano.pietr...@googlewave.com
 
  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 



 --
 gr
 Wim den Ouden
 Custom applications, https://e-comm.appspot.com/
 Free open source E-commerce framework (web) apps,
 http://code.google.com/p/relat/
 Gae developer tips, http://code.google.com/p/relat/wiki/gaetips

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 

My email: massimiliano.pietr...@gmail.com
My Google Wave: massimiliano.pietr...@googlewave.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-13 Thread Fabrizio Accatino
Check if you browser downloads the css or gets a 404. If downloads corretly,
inspect the content.
Use Fiddler or FireBug. Or activate Resource Tracking in chrome.

http://www.fiddler2.com/fiddler2/
http://www.fiddler2.com/fiddler2/http://getfirebug.com/

http://getfirebug.com/ Fabrizio


On Thu, Jan 13, 2011 at 12:02 PM, Massimiliano 
massimiliano.pietr...@gmail.com wrote:

 Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
 I can't understand why with the same browser on the same pc, offline it
 works, online it doesn't.

 2011/1/13 Wim den Ouden wdenou...@gmail.com

 Did you wait for a moment and try it again?
 static files are stored on a server near you, app files on the appengine
 server
 gr
 wim

 2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
  Dear all,
  I'm building a web site and I'm working with the float tag on my CSS.
  The website is working well offline, but when I deploy it on the
 appegine
  all the box are in one column in the right (instead of some blocks
 floating
  on the left and some others on the right).
  Is something I need to know in using CSS for appengine? I can't find
  documentation about this.
  Regards
  Max
  --
 
  My email: massimiliano.pietr...@gmail.com
  My Google Wave: massimiliano.pietr...@googlewave.com
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 



 --
 gr
 Wim den Ouden
 Custom applications, https://e-comm.appspot.com/
 Free open source E-commerce framework (web) apps,
 http://code.google.com/p/relat/
 Gae developer tips, http://code.google.com/p/relat/wiki/gaetips

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




 --

 My email: massimiliano.pietr...@gmail.com
 My Google Wave: massimiliano.pietr...@googlewave.com

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-13 Thread Martin Webb
This may seem stupid - but if the css file is an include and the css not 
working 
when deployed have you checked your url - is it correct? Have you tried just a 
simple css block in the HTML. I use loads of css on my site no issues, also are 
you checking on same pc/different browser or is everything the same.

 
Regards
 
 
Martin Webb


 
The information contained in this email is confidential and may contain 
proprietary information. It is meant solely for the intended recipient. Access 
to this email by anyone else is unauthorised. If you are not the intended 
recipient, any disclosure, copying, distribution or any action taken or omitted 
in reliance on this, is prohibited and may be unlawful. No liability or 
responsibility is accepted if information or data is, for whatever reason 
corrupted or does not reach its intended recipient. No warranty is given that 
this email is free of viruses. The views expressed in this email are, unless 
otherwise stated, those of the author 

 
 





From: Massimiliano massimiliano.pietr...@gmail.com
To: google-appengine@googlegroups.com
Sent: Thu, 13 January, 2011 11:02:46
Subject: Re: [google-appengine] CSS

Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
I can't understand why with the same browser on the same pc, offline it works, 
online it doesn't.


2011/1/13 Wim den Ouden wdenou...@gmail.com

Did you wait for a moment and try it again?
static files are stored on a server near you, app files on the appengine server
gr
wim

2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:

 Dear all,
 I'm building a web site and I'm working with the float tag on my CSS.
 The website is working well offline, but when I deploy it on the appegine
 all the box are in one column in the right (instead of some blocks floating
 on the left and some others on the right).
 Is something I need to know in using CSS for appengine? I can't find
 documentation about this.
 Regards
 Max
 --

 My email: massimiliano.pietr...@gmail.com
 My Google Wave: massimiliano.pietr...@googlewave.com

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




--
gr
Wim den Ouden
Custom applications, https://e-comm.appspot.com/
Free open source E-commerce framework (web) apps,
http://code.google.com/p/relat/
Gae developer tips, http://code.google.com/p/relat/wiki/gaetips

--
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.




-- 

My email: massimiliano.pietr...@gmail.com
My Google Wave: massimiliano.pietr...@googlewave.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



  

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-13 Thread Massimiliano
The css is loaded, as everything is working well (background, box dimension,
font,), only the float is not working!!

2011/1/13 Martin Webb spydre...@yahoo.co.uk

 This may seem stupid - but if the css file is an include and the css not
 working when deployed have you checked your url - is it correct? Have you
 tried just a simple css block in the HTML. I use loads of css on my site no
 issues, also are you checking on same pc/different browser or is everything
 the same.


 Regards





 *Martin Webb*





 The information contained in this email is confidential and may contain
 proprietary information. It is meant solely for the intended recipient.
 Access to this email by anyone else is unauthorised. If you are not the
 intended recipient, any disclosure, copying, distribution or any action
 taken or omitted in reliance on this, is prohibited and may be unlawful. No
 liability or responsibility is accepted if information or data is, for
 whatever reason corrupted or does not reach its intended recipient. No
 warranty is given that this email is free of viruses. The views expressed in
 this email are, unless otherwise stated, those of the author






 --
 *From:* Massimiliano massimiliano.pietr...@gmail.com
 *To:* google-appengine@googlegroups.com
 *Sent:* Thu, 13 January, 2011 11:02:46
 *Subject:* Re: [google-appengine] CSS

 Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
 I can't understand why with the same browser on the same pc, offline it
 works, online it doesn't.

 2011/1/13 Wim den Ouden wdenou...@gmail.com

 Did you wait for a moment and try it again?
 static files are stored on a server near you, app files on the appengine
 server
 gr
 wim

 2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
  Dear all,
  I'm building a web site and I'm working with the float tag on my CSS.
  The website is working well offline, but when I deploy it on the
 appegine
  all the box are in one column in the right (instead of some blocks
 floating
  on the left and some others on the right).
  Is something I need to know in using CSS for appengine? I can't find
  documentation about this.
  Regards
  Max
  --
 
  My email: massimiliano.pietr...@gmail.com
  My Google Wave: massimiliano.pietr...@googlewave.com
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 



 --
 gr
 Wim den Ouden
 Custom applications, https://e-comm.appspot.com/
 Free open source E-commerce framework (web) apps,
 http://code.google.com/p/relat/
 Gae developer tips, http://code.google.com/p/relat/wiki/gaetips

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




 --

 My email: massimiliano.pietr...@gmail.com
 My Google Wave: massimiliano.pietr...@googlewave.com

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

  --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 

My email: massimiliano.pietr...@gmail.com
My Google Wave: massimiliano.pietr...@googlewave.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-13 Thread Martin Webb
what browser are you using can we have a url, have you tried just making a 
simple html static, served page with just the float - use embeded css - see if 
it works. what templating are you using. have you just added the float? are you 
caching the page. I would make a simple page - remove everything and see if it 
can be fixed.

 
Regards
 
 
Martin Webb
The information contained in this email is confidential and may contain 
proprietary information. It is meant solely for the intended recipient. Access 
to this email by anyone else is unauthorised. If you are not the intended 
recipient, any disclosure, copying, distribution or any action taken or omitted 
in reliance on this, is prohibited and may be unlawful. No liability or 
responsibility is accepted if information or data is, for whatever reason 
corrupted or does not reach its intended recipient. No warranty is given that 
this email is free of viruses. The views expressed in this email are, unless 
otherwise stated, those of the author 

 
 





From: Massimiliano massimiliano.pietr...@gmail.com
To: google-appengine@googlegroups.com
Sent: Thu, 13 January, 2011 13:42:57
Subject: Re: [google-appengine] CSS

The css is loaded, as everything is working well (background, box dimension, 
font,), only the float is not working!!


2011/1/13 Martin Webb spydre...@yahoo.co.uk

This may seem stupid - but if the css file is an include and the css not 
working 
when deployed have you checked your url - is it correct? Have you tried just a 
simple css block in the HTML. I use loads of css on my site no issues, also are 
you checking on same pc/different browser or is everything the same.

 
Regards
 
 
Martin Webb


 
The information contained in this email is confidential and may contain 
proprietary information. It is meant solely for the  intended recipient. 
Access 
to this email by anyone else is unauthorised. If you are not the intended 
recipient, any disclosure, copying, distribution or any action taken or 
omitted 
in reliance on this, is prohibited and may be unlawful. No liability or 
responsibility is accepted if information or data is, for whatever reason 
corrupted or does not reach its intended recipient. No warranty is given that 
this email is free of viruses. The views expressed in this email are, unless 
otherwise stated, those of the author 

 
 






From: Massimiliano massimiliano.pietr...@gmail.com
To: google-appengine@googlegroups.com
Sent: Thu, 13 January, 2011 11:02:46
Subject: Re: [google-appengine] CSS


Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
I can't understand why with the same browser on the same pc, offline it works, 
online it doesn't.


2011/1/13 Wim den Ouden wdenou...@gmail.com

Did you wait for a moment and try it again?
static files are stored on a server near you, app files on the appengine 
server
gr
wim

2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:

 Dear all,
 I'm building a web site and I'm working with the float tag on my CSS.
 The website is working well offline, but when I deploy it on the appegine
 all the box are in one column in the right (instead of some blocks floating
 on the left and some others on the right).
 Is something I need to know in using CSS for appengine? I can't find
 documentation about this.
 Regards
 Max
 --

 My email: massimiliano.pietr...@gmail.com
 My Google Wave: massimiliano.pietr...@googlewave.com

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




--
gr
Wim den Ouden
Custom applications, https://e-comm.appspot.com/
Free open source E-commerce framework (web) apps,
http://code.google.com/p/relat/
Gae developer tips, http://code.google.com/p/relat/wiki/gaetips

--
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.




-- 

My email: massimiliano.pietr...@gmail.com
My Google Wave: massimiliano.pietr...@googlewave.com

-- 

You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



-- 
You received this message because you are subscribed to the Google Groups

Re: [google-appengine] CSS

2011-01-13 Thread Fabian Kuran
Did you already tried to clean your browser cache and try it again?

kind regards
fabi

2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
 Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
 I can't understand why with the same browser on the same pc, offline it
 works, online it doesn't.

 2011/1/13 Wim den Ouden wdenou...@gmail.com

 Did you wait for a moment and try it again?
 static files are stored on a server near you, app files on the appengine
 server
 gr
 wim

 2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
  Dear all,
  I'm building a web site and I'm working with the float tag on my CSS.
  The website is working well offline, but when I deploy it on the
  appegine
  all the box are in one column in the right (instead of some blocks
  floating
  on the left and some others on the right).
  Is something I need to know in using CSS for appengine? I can't find
  documentation about this.
  Regards
  Max
  --
 
  My email: massimiliano.pietr...@gmail.com
  My Google Wave: massimiliano.pietr...@googlewave.com
 
  --
  You received this message because you are subscribed to the Google
  Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.com.
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 



 --
 gr
 Wim den Ouden
 Custom applications, https://e-comm.appspot.com/
 Free open source E-commerce framework (web) apps,
 http://code.google.com/p/relat/
 Gae developer tips, http://code.google.com/p/relat/wiki/gaetips

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




 --

 My email: massimiliano.pietr...@gmail.com
 My Google Wave: massimiliano.pietr...@googlewave.com

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 
--
Mit freundlichen Grüßen
Fabian Kuran

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] CSS

2011-01-13 Thread Massimiliano
Yes, to all! (and thanks to all!)

This is the link: http://albafenicesite.appspot.com/

http://albafenicesite.appspot.com/Attached the css!

Massimiliano

2011/1/13 Fabian Kuran ivirusbr...@gmail.com

 Did you already tried to clean your browser cache and try it again?

 kind regards
 fabi

 2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
  Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
  I can't understand why with the same browser on the same pc, offline it
  works, online it doesn't.
 
  2011/1/13 Wim den Ouden wdenou...@gmail.com
 
  Did you wait for a moment and try it again?
  static files are stored on a server near you, app files on the appengine
  server
  gr
  wim
 
  2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
   Dear all,
   I'm building a web site and I'm working with the float tag on my CSS.
   The website is working well offline, but when I deploy it on the
   appegine
   all the box are in one column in the right (instead of some blocks
   floating
   on the left and some others on the right).
   Is something I need to know in using CSS for appengine? I can't find
   documentation about this.
   Regards
   Max
   --
  
   My email: massimiliano.pietr...@gmail.com
   My Google Wave: massimiliano.pietr...@googlewave.com
  
   --
   You received this message because you are subscribed to the Google
   Groups
   Google App Engine group.
   To post to this group, send email to
 google-appengine@googlegroups.com.
   To unsubscribe from this group, send email to
   google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
   For more options, visit this group at
   http://groups.google.com/group/google-appengine?hl=en.
  
 
 
 
  --
  gr
  Wim den Ouden
  Custom applications, https://e-comm.appspot.com/
  Free open source E-commerce framework (web) apps,
  http://code.google.com/p/relat/
  Gae developer tips, http://code.google.com/p/relat/wiki/gaetips
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 
 
 
 
  --
 
  My email: massimiliano.pietr...@gmail.com
  My Google Wave: massimiliano.pietr...@googlewave.com
 
  --
  You received this message because you are subscribed to the Google Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 



 --
 --
 Mit freundlichen Grüßen
 Fabian Kuran

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 

My email: massimiliano.pietr...@gmail.com
My Google Wave: massimiliano.pietr...@googlewave.com

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.


html, body{ 
	margin:1px; 
	padding:0; 
	text-align:center; 
 }

div#container {
	margin-left:auto;
	margin-right:auto;
	width:950px;
	height:auto;
	background-color:white;
	font: 13px/1.5 Arial, Helvetica,'Liberation Sans', FreeSans, sans-serif;
	-webkit-box-shadow: inset 0px 0px 10px #00;
	-moz-box-shadow: inset 0px 0px 10px #00;
	box-shadow: inset 0px 0px 10px #00;
}

div#h1 {font-size: 10px}

div#side {
	margin-top:0px;
	width:295px;
	float:right;
	position:relative;
	margin-bottom:2em;
	margin-left:0px;
	text-align:justify;
	font: 16px/1.5 Arial, Helvetica,'Liberation Sans', FreeSans, sans-serif;
}

div#aventino {
	width:auto;
	padding:10px;
	height:auto; 
	position:relative;
	margin-bottom:2em;
	background:FFE77C;
	margin-left:0px;
	margin-right:7px;
	-moz-border-radius:2px;
	border-radius:2px;
	-moz-box-shadow: 1px 0px 6px #00; 
	-webkit-box-shadow: 1px 0px 6px #00;
	box-shadow: 1px 0px 6px #00;
	font: 13px/1.5 Arial, Helvetica,'Liberation Sans', FreeSans, sans-serif;
	background: #F4E04A; /* old browsers */
	background: -moz-linear-gradient(left, #F4E04A 1%, #FFEA8E 

Re: [google-appengine] CSS

2011-01-13 Thread Fabrizio Accatino
Your issue is not a GAE issue.  The CSS is the same.

Check your HTML.  It's invalid. Look at the end of lorem ipsum block and
the adv java-script block.


   Fabrizio


On Thu, Jan 13, 2011 at 11:37 PM, Massimiliano 
massimiliano.pietr...@gmail.com wrote:

 Yes, to all! (and thanks to all!)

 This is the link: http://albafenicesite.appspot.com/

 http://albafenicesite.appspot.com/Attached the css!

 Massimiliano

 2011/1/13 Fabian Kuran ivirusbr...@gmail.com

 Did you already tried to clean your browser cache and try it again?

 kind regards
 fabi

 2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
  Yes, I have waited more of 24h. I'm dealing whit this from Sunday.
  I can't understand why with the same browser on the same pc, offline it
  works, online it doesn't.
 
  2011/1/13 Wim den Ouden wdenou...@gmail.com
 
  Did you wait for a moment and try it again?
  static files are stored on a server near you, app files on the
 appengine
  server
  gr
  wim
 
  2011/1/13 Massimiliano massimiliano.pietr...@gmail.com:
   Dear all,
   I'm building a web site and I'm working with the float tag on my CSS.
   The website is working well offline, but when I deploy it on the
   appegine
   all the box are in one column in the right (instead of some blocks
   floating
   on the left and some others on the right).
   Is something I need to know in using CSS for appengine? I can't find
   documentation about this.
   Regards
   Max
   --
  
   My email: massimiliano.pietr...@gmail.com
   My Google Wave: massimiliano.pietr...@googlewave.com
  
   --
   You received this message because you are subscribed to the Google
   Groups
   Google App Engine group.
   To post to this group, send email to
 google-appengine@googlegroups.com.
   To unsubscribe from this group, send email to
   google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
   For more options, visit this group at
   http://groups.google.com/group/google-appengine?hl=en.
  
 
 
 
  --
  gr
  Wim den Ouden
  Custom applications, https://e-comm.appspot.com/
  Free open source E-commerce framework (web) apps,
  http://code.google.com/p/relat/
  Gae developer tips, http://code.google.com/p/relat/wiki/gaetips
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com
 .
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 
 
 
 
  --
 
  My email: massimiliano.pietr...@gmail.com
  My Google Wave: massimiliano.pietr...@googlewave.com
 
  --
  You received this message because you are subscribed to the Google
 Groups
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to
  google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
  http://groups.google.com/group/google-appengine?hl=en.
 



 --
 --
 Mit freundlichen Grüßen
 Fabian Kuran

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




 --

 My email: massimiliano.pietr...@gmail.com
 My Google Wave: massimiliano.pietr...@googlewave.com

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.