Re: [css-d] Background flashes

2006-06-30 Thread 2geedesign

- 
 Riva wrote 
 I designed a website that has a big picture on the background (per the
 _client's_ request) and I find that the background flashes in IE - not
 just once, but every time I go to the page. I tried all the usual
 fixes I could find and even cleared the cache, but it is still
 happening. Any advice would be much appreciated.

 The site is here: http://www.starqualitydesigns.com/Moodus/

Hi Riva
Try adding

meta http-equiv=Page-Enter content=blendTrans(Duration=0.1)

into the head/head section of each page. This slows deleting of the old
page. IE has a fade-out/fade-in option when changing webpages.
Setting the fade time 0 .1 sec is  harmless for the visitor, and long enough
to prevent flickering:

Hope this works.

Ian
 __
 css-discuss [EMAIL PROTECTED]
 http://www.css-discuss.org/mailman/listinfo/css-d
 IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
 List wiki/FAQ -- http://css-discuss.incutio.com/
 Supported by evolt.org -- http://www.evolt.org/help_support_evolt/



__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Horizontal navbar not centralised with div in FF/Netscape

2006-06-02 Thread 2geedesign
Hi

The webpage is http://www.synergie.uk.com/services.html
The CSS is http://www.synergie.uk.com/stylesheets/main-style.css

I have a horizontal navbar contained with the #servicesnav div. In IE6 Win and 
Opera 8.5 the links are centralised as I want within the div. However in FF and 
Netscape the links are moved over to the right leaving a blank space on the 
left and forcing the links to run into 3 lines.

If somebody could advise how I can achieve the same layout in FF / Netscape as 
in IE6 it would be much appreciated

Cheers

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Horizontal navbar not centralised with div in FF/Netscape

2006-06-02 Thread 2geedesign
 2geedesign wrote:
  The webpage is http://www.synergie.uk.com/services.html
  The CSS is http://www.synergie.uk.com/stylesheets/main-style.css
  I have a horizontal navbar contained with the #servicesnav div. In IE6
Win and Opera 8.5 the links are centralised as I want within the div.
However in FF and Netscape the links are moved over to the right leaving a
blank space on the left and forcing the links to run into 3 lines.
  Ian W Geddes

davidLaakso wrote:
 Ian, I do not have Netscape, but these changes /seemed/ to help in
 Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.3)
 Gecko/20060426 Firefox/1.5.0.3(local):
 #servicesnav ul {
 /*margin: 0em;*/
 margin: 0 auto;
 padding: 1px 0 8px 3px;
 /*padding-top: 1px;
 padding-bottom: 2px;*/
 }

David, Thanks for that - everything seems to work perfectly now. If you have
the time to reply could you explain to me how the changes actually work to
make FF and Netscape behave as per IE. How was it that they interpreted my
original CSS differently from IE?

Thanks again

Ian




 http://www.dlaakso.com/gustave/




__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Georgia font not showing in FF/Netscape

2006-03-27 Thread 2geedesign
Hi
I have been asked to use the Georgia font on a website design. This font 
appears ok on my machine in IE6/Win but on the same machine in FF and Netscape 
the page defaults to Times New Roman, the second specified font.
On my client machine she reports that half of the page content is in Georgia 
and the other half in TNR.
If anyone can suggest why this font doesn't show in FF and Netscape on my 
machine and why it appears in only half the content on the second machine it 
would be much appreciated.


Ian W Geddes

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Content hidden below footer div

2006-03-22 Thread 2geedesign
Hi
Website link is http://www.countryhouserenovations.co.uk/contactUs.html
CSS link is http://www.countryhouserenovations.co.uk/stylesheets/main-style.css

I'm trying to design a liquid layout whereby the footer div always sits at the 
bottom of the viewport when the content is shorter than the viewport. The 
problem is when the content is longer than the viewport it is hidden behind the 
footer div. 
If anyone can help with a solution it would be much appreciated.

Thanks  
Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Content hidden below footer div

2006-03-22 Thread 2geedesign

- Original Message - 
From: Gunlaug Sørtun [EMAIL PROTECTED]
To: css-d@lists.css-discuss.org
Sent: Wednesday, March 22, 2006 3:37 PM
Subject: Re: [css-d] Content hidden below footer div


 2geedesign wrote:
  http://www.countryhouserenovations.co.uk/contactUs.html CSS link is

  I'm trying to design a liquid layout whereby the footer div always
  sits at the bottom of the viewport when the content is shorter than
  the viewport. The problem is when the content is longer than the
  viewport it is hidden behind the footer div.

 Adding something like...
 #content {padding-bottom: 3em;}
 ...seems to work best. Make sure that value is large enough.

 regards
 Georg
 -- 
 http://www.gunlaug.no

Hi Georg
Why didn't I think of that!!. Many thanks for your prompt response.

Cheers
Ian
 __
 css-discuss [EMAIL PROTECTED]
 http://www.css-discuss.org/mailman/listinfo/css-d
 IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
 List wiki/FAQ -- http://css-discuss.incutio.com/
 Supported by evolt.org -- http://www.evolt.org/help_support_evolt/



__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] RH column flickers in IE/Win (repost)

2006-03-14 Thread 2geedesign

- Original Message - 
From: francky [EMAIL PROTECTED]
To: 2geedesign [EMAIL PROTECTED]
Cc: ~davidLaakso ; [EMAIL PROTECTED] [EMAIL PROTECTED];
css-d@lists.css-discuss.org
Sent: Monday, March 13, 2006 5:41 AM
Subject: Re: [css-d] RH column flickers in IE/Win (repost)


 2geedesign wrote:

 In IE6/Win the right hand column flickers as you navigate around the
site.
 [...]
 I can't remove the background-position ...
 [...]
 I've tried out your suggestion but it doesn't make any difference...
 [...]
 I've set the settings option as you suggested but the problem still
exists...
 [...]
 Other people are suggesting it's a factor of IE that cannot be resolved,
so
 I guess I am going to have to live with it.
 
 
 Hi 2geedesign,
 Defeated by IE6? - Don't give them the triumph! Try to do some Kung-Fu:
 non-compliant behaviour punishing with non-compliant behaviour.
 See this testpages without flashing IE

http://home.tiscali.nl/developerscorner/css-discuss/test-ab-glazing-a.htm.
 Explication over there: easy made IE-only 1-liner.

 This MS built IE flash killer is valid html, is valid css.
 No hacks, no scripts.
 :-)
 francky

 Hi Francky
I have, thanks to you, triumphed over IE6!! Your solution works
brilliantly - not a flicker to be seen.
Many, many thanks for taking the time to investigate and to provide such a
clear, easy to understand solution.

Cheers
Ian





__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] RH column flickers in IE/Win (repost)

2006-03-12 Thread 2geedesign
David
Thanks for your suggestion. I'll try this out. I use the min/max width for
the other browsers that do support so as to limit the widths the page will
go to.
BTW I'm not sure I understand your aside comments - top post or drop my uri?
Please could you explain this for me. I don't want to cause problems for
other people.

Thanks
Ian

- Original Message - 
From: ~davidLaakso [EMAIL PROTECTED]
To: 2geedesign [EMAIL PROTECTED]
Cc: Design Groups [EMAIL PROTECTED];
css-d@lists.css-discuss.org
Sent: Saturday, March 11, 2006 8:38 PM
Subject: Re: [css-d] RH column flickers in IE/Win (repost)


 2geedesign wrote:
  Hi Shelly
  Thanks for your response but I can't remove the background-position
since
  the design is based upon using faux columns and so is needed to
accurately
  position the background image.
 
  Cheers
  Ian
 

 Ian,
 Probably a flaky suggestion, but try shorthand and delete the min/max
 width(not ie supported, unless you are feeding a fix I'm not seeing):

 #wrapper {
 min-width: 750px;
 max-width: 1200px;
 background-image: url(../images/fauxcolumns.jpg);
 background-repeat: repeat-y;
 background-position: 75% 0em;}

 Becomes:
 #wrapper {
 width: 750px;
 background: url(../images/fauxcolumns.jpg) 75% 0 repeat-y;}/*adjust
position*/

 I am on linux and unable to test ie.

 aside: Please don't top post or drop your uri-- makes it hard to follow a
logical thread; and people get tired of having to hunt their mail for your
uri:
 Website address is http://www.abglazing.co.uk/
 CSS is http://www.abglazing.co.uk/stylesheets/main-style.css



 Regards,
 ~davidLaakso





__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] RH Column flickers in IE

2006-03-12 Thread 2geedesign
Hi Holly
I've set the settings option as you suggested but the problem still exists.
Other people are suggesting it's a factor of IE that cannot be resolved, so
I guess I am going to have to live with it.
Thanks anyway for your input.
Cheers
Ian
- Original Message - 
From: Holly Bergevin [EMAIL PROTECTED]
To: css-d@lists.css-discuss.org; 2geedesign [EMAIL PROTECTED]
Sent: Saturday, March 11, 2006 6:22 PM
Subject: Re: [css-d] RH Column flickers in IE


 From: 2geedesign [EMAIL PROTECTED]

 Hi
 Website address is http://www.abglazing.co.uk/
 CSS is http://www.abglazing.co.uk/stylesheets/main-style.css
 
 In IE6/Win the right hand column flickers as you navigate around the
site. This doesn't happen in FF or Netscape.
 Cause and solution would be very much appreciated.

 The cause is that you have your - Tools  Internet Options  Temporary
Internet Files  Settings  Check for newer versions of stored pages: - set
to - Every visit to the page

 Change it to Automatcally and you'll no longer see the flash. IE goes and
requests the image each time you move to another page using the navigation
menu. Going using the Back and Forward buttons after clicking on the
different links doesn't seem to require re-requesting the image.

 You might try setting background colors for those columns that are the
same as the ones in your faux-column image. That would at least prevent the
appearance of the white background when IE goes to request the image again.
This will probably then show evidence of a 3-px jog problem on the right
side of the content section. Float #content .gutter left to eliminate this.

 Popular wisdom says that /most/ people do not change the Settings options,
so if you decide not to add the background colors it is probably not going
to affect the view that most visitors to the pages will get.

 I hope that helps,

 ~holly





__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] RH column flickers in IE/Win (repost)

2006-03-12 Thread 2geedesign
Hi David
I've tried out your suggestion but it doesn't make any difference to the
flickering problem. Thanks anyway.

Cheers
Ian
- Original Message - 
From: ~davidLaakso [EMAIL PROTECTED]
To: 2geedesign [EMAIL PROTECTED]
Cc: Design Groups [EMAIL PROTECTED];
css-d@lists.css-discuss.org
Sent: Saturday, March 11, 2006 8:38 PM
Subject: Re: [css-d] RH column flickers in IE/Win (repost)


 2geedesign wrote:
  Hi Shelly
  Thanks for your response but I can't remove the background-position
since
  the design is based upon using faux columns and so is needed to
accurately
  position the background image.
 
  Cheers
  Ian
 

 Ian,
 Probably a flaky suggestion, but try shorthand and delete the min/max
 width(not ie supported, unless you are feeding a fix I'm not seeing):

 #wrapper {
 min-width: 750px;
 max-width: 1200px;
 background-image: url(../images/fauxcolumns.jpg);
 background-repeat: repeat-y;
 background-position: 75% 0em;}

 Becomes:
 #wrapper {
 width: 750px;
 background: url(../images/fauxcolumns.jpg) 75% 0 repeat-y;}/*adjust
position*/

 I am on linux and unable to test ie.

 aside: Please don't top post or drop your uri-- makes it hard to follow a
logical thread; and people get tired of having to hunt their mail for your
uri:
 Website address is http://www.abglazing.co.uk/
 CSS is http://www.abglazing.co.uk/stylesheets/main-style.css



 Regards,
 ~davidLaakso





__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] RH column flickers in IE/Win (repost)

2006-03-11 Thread 2geedesign
Hi 

Website address is http://www.abglazing.co.uk/ 
CSS is http://www.abglazing.co.uk/stylesheets/main-style.css 

I have designed a liquid two column layout with the navbar contained in the RH 
column. 
In IE6/Win the right hand column flickers as you navigate around the site. This 
doesn't happen in FF or Netscape. 
If anyone has come across this before and can offer a solution it would be very 
much appreciated. 

Thanks 

Ian 

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] RH column flickers in IE/Win (repost)

2006-03-11 Thread 2geedesign
Hi Shelly
Thanks for your response but I can't remove the background-position since
the design is based upon using faux columns and so is needed to accurately
position the background image.

Cheers
Ian
- Original Message - 
From: Design Groups [EMAIL PROTECTED]
To: css-d@lists.css-discuss.org
Sent: Saturday, March 11, 2006 7:52 PM
Subject: Re: [css-d] RH column flickers in IE/Win (repost)


 Something I have found - and I don't know why this is - but if you remove
 the background-position from your #wrapper div in your stylesheet, the
 flicker will stop.  For some reason - even if your page is set to reload
 every visit, in IE, if you have the background position set, it'll make
the
 flicker - but if that line is not in your styelsheet, then the flicker
goes
 away.

 Like I said, I don't know *why* it does that, but it works (I have to keep
 this in mind when I do CSS-based rollovers for navigation - if ever I put
in
 that background-position thing, then the nav links flicker like crazy
when
 moving around there - but I remove that line and all is well!)  I've never
 had it happen to an entire page background before, but I would imagine
it's
 the same issue I had with my rollover links.

 HTH

 ~Shelly

 __
 css-discuss [EMAIL PROTECTED]
 http://www.css-discuss.org/mailman/listinfo/css-d
 IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
 List wiki/FAQ -- http://css-discuss.incutio.com/
 Supported by evolt.org -- http://www.evolt.org/help_support_evolt/



__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] RH Column flickers in IE

2006-03-10 Thread 2geedesign
Hi
Website address is http://www.abglazing.co.uk/
CSS is http://www.abglazing.co.uk/stylesheets/main-style.css

In IE6/Win the right hand column flickers as you navigate around the site. This 
doesn't happen in FF or Netscape.
Cause and solution would be very much appreciated.

Thanks

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Background image duplicated when page is scrolled in IE6/win

2006-01-30 Thread 2geedesign
Hi
 Webpage link = http://www.2gee.com/business.html
CSS link = http://www.2gee.com/stylesheets/main-style.css

If you visit this page in IE6/win and scroll the page down to the bottom and 
then scroll back up you should see that the background image located at the top 
of the LH column has been duplicated. 
If someone can advise why this is happening and how to fix it it would be much 
appreciated.

Regards

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] RH column drops down in IE6/Win

2006-01-24 Thread 2geedesign
Hi

Website link is http://www.debbiejoynes.co.uk/about.html
CSS link is http://www.debbiejoynes.co.uk/stylesheets/main-style.css

This layout is a 2 column liquid layout using percentage widths (taken from Dan 
Cederholm's book Bulletproof Web Design)
A strange thing is happening on two of my colleagues computers when they open 
up this page with the browser window in the restore down position. The RH 
navigation column has dropped down and starts after the main content text 
finishes. If you then click on the maximise button the navigation column 
jumps back up into the correct position. If you then press the restore down 
button the layout remains intact. They are running IE6/Win (V6.0.2900.2180). I 
can't reproduce this problem on my computer (I'm running IE6/Win - 
ver6.0.2800.1106).
Any reasons as to why this is happening and how to fix it would be much 
appreciated.

Thanks
Ian
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Is it possible to set max-width and min-width in IE

2006-01-19 Thread 2geedesign
Thanks for this. I'll check it out asap.

- Original Message - 
From: bj [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; css-d@lists.css-discuss.org
Sent: Wednesday, January 18, 2006 7:41 PM
Subject: RE: [css-d] Is it possible to set max-width and min-width in IE


 Is there any way to get IE to accept max-width and min-width?
 
 Pick your poison:
 http://kickasswebdesign.com/webgeekdir/CSS/Browser_Bugs/minmaxie/
 
 
 ---
 avast! Antivirus: Outbound says I'm squeaky clean.
 Virus Database (VPS): 0603-3, 01/18/2006
 Tested on: 1/18/2006 2:41:07 PM
 
 
 

__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Is it possible to set max-width and min-width in IE

2006-01-19 Thread 2geedesign
Hi Al
Thanks for your advise. I'll certainly bear it in mind when checking out the
links

Ian
- Original Message - 
From: Al Sparber [EMAIL PROTECTED]
To: bj [EMAIL PROTECTED]; [EMAIL PROTECTED];
css-d@lists.css-discuss.org
Sent: Wednesday, January 18, 2006 7:43 PM
Subject: Re: [css-d] Is it possible to set max-width and min-width in IE


 From: bj [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]; css-d@lists.css-discuss.org
 Sent: Wednesday, January 18, 2006 2:41 PM
 Subject: Re: [css-d] Is it possible to set max-width and min-width in
 IE


  Is there any way to get IE to accept max-width and min-width?
 
  Pick your poison:
  http://kickasswebdesign.com/webgeekdir/CSS/Browser_Bugs/minmaxie/

 Be careful on some of the solutions listed as the poison metaphor
 could be more than a metaphor :-) Also be wary of solutions requiring
 quirks mode. They can create other problems and cause freezes if a
 page is later inadvertantly put into standards mode.

 -- 
 Al Sparber
 PVII
 http://www.projectseven.com

 Designing with CSS is sometimes like barreling down a crumbling
 mountain road at 90 miles per hour secure in the knowledge that
 repairs are scheduled for next Tuesday.









__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


Re: [css-d] Is it possible to set max-width and min-width in IE

2006-01-19 Thread 2geedesign
Hi Christian
Thanks very much for the links. I'll be trying them out asap.

Ian
- Original Message - 
From: Christian Montoya [EMAIL PROTECTED]
To: 2geedesign [EMAIL PROTECTED]
Cc: css-d@lists.css-discuss.org
Sent: Thursday, January 19, 2006 6:16 AM
Subject: Re: [css-d] Is it possible to set max-width and min-width in IE


On 1/18/06, 2geedesign [EMAIL PROTECTED] wrote:
 Hi
 Is there any way to get IE to accept max-width and min-width?


A plug and play Javascript solution like Al's example:
http://pro.html.it/articoli/id_620/idcat_31/pag_1/pag.html

If all you care about is min width, there's this crazy pure CSS technique:
http://www.webreference.com/programming/min-width/

Then again, you could just give all those stubborn IE users a wild
fluid layout, after all, they must be used to them by now.

--
--
Christian Montoya
christianmontoya.com ... rdpdesign.com ... cssliquid.com


__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Is it possible to set max-width and min-width in IE

2006-01-18 Thread 2geedesign
Hi
Is there any way to get IE to accept max-width and min-width?

Cheers

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Unwanted horizontal scroll bar on liquid layout

2006-01-16 Thread 2geedesign
Hi
I have designed a simple two column liquid layout using % widths and Sliding 
Faux columns. My problem is that as 
you increase the text size in FF, Netscape, at a certain size the text in the 
RH column spills out of the navbar div.
Advice as to why this is happening and any solutions would be much appreciated.

Site address http://www.debbiejoynes.co.uk/
CSS http://www.debbiejoynes.co.uk/stylesheets/main-style.css

Cheers

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Link to download IE 5.5Win

2006-01-01 Thread 2geedesign
Hi
Could someone kindly give me a link where I can download IE 5.5 Win.

Thanks

Ian 
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Unable to fix p font size in specific class

2005-11-20 Thread 2geedesign
 Hi

Webpage http://www.studleyflorists.co.uk/handtied.html

CSS http://www.studleyflorists.co.uk/stylesheets/main-style.css

I have built a store page and want to keep the text size p in the store class 
(.store) at a fixed pixel size (say 10px) to avoid the page breaking up if the 
user increases text size.
However no matter what size I set for .store p {} it makes no difference and so 
the layout breaks up as the browser text size is increased.
I can change font colour etc ok. It seems that I can fix the .store h3 {} ok. 
Help would be much appreciated.

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] footers that stick to the bottom of the window (re-post)

2005-10-24 Thread 2geedesign
Can anybody point me towards tutorials / examples for a two column, fixed 
width, centred layout with header and footer whereby the footer sticks to the 
bottom of the browser window if the content is shorter than the browser window.

Thanks
Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Extra bullet point appears in firefox and netscape

2005-10-19 Thread 2geedesign
When viewing the following page in firefox 1.0 (WIN) and netscape 7.1 (WIN) an 
extra bullet point appears to the left of the main list. Ideas as to why and 
cures to fix this problem would be much appreciated.

http://www.bearingsfiltration.co.uk/

Cheers 

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Main content jumps in Opera 7.5 /PC (repost)

2005-08-26 Thread 2geedesign
Reposted - original link was incorrect - sorry
When you visit www.performancecontrolsystems.co.uk  using Opera 7.5 on Windows 
the main content is high is on the page and out of position. If you then pass 
the mouse over the links on the left the content jumps down into the correct 
position. On the CONTACT US page passing the mouse over the e-mail link in the 
contact form causing the content to jump back up.

Any help in solving this problem would be much appreciated.

Ian W Geddes

Ian W Geddes
01527 404808 / 07940 404938
Website design and search engine optimisation
www.2geedesign.com
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/


[css-d] Main content jumps in Opera 7.7 / PC

2005-08-25 Thread 2geedesign
When you visit www.peformancecontrolsystems.co.uk  using Opera 7.5 on Windows 
the main content is high is on the page and out of position. If you then pass 
the mouse over the links on the left the content jumps down into the correct 
position. On the CONTACT US page passing the mouse over the e-mail link in the 
contact form causing the content to jump back up.

Any help in solving this problem would be much appreciated.

Ian W Geddes
__
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/