[WSG] IE7 and iframes

2007-07-25 Thread Michael MD
I'm trying to fix some pages that use iframes that are broken in IE7 are there any good tips for fixing broken iframes-related javascript in IE7? This is NOT a cross-domain problem. *** List Guidelines: http://webstandardsgrou

Re: [WSG] Center Align an Unorder List

2007-07-25 Thread David Laakso
Ryan Moore wrote: Looking to Center Text on an unordered list. css: ul {text-align: center;} li { display: inline; list-style-type: none; padding-right: 20px; } markup: Item one Item two Item three Item four Item five Best, ~dL -- http://chelseacreekstudio.com/ ***

Re: [WSG] Using target="_blank"

2007-07-25 Thread ron zisman
hey steve, without going into pros and cons on the target attribute, roger johansson has an interesting article on the subject with a javascript solution the degrades to opening in the same window if java is turned off or pop ups blocked. some clients want what they want and won't be diss

Re: [WSG] Center Align an Unorder List

2007-07-25 Thread Justas Butkus
If I understand correctly, you might be searching for something like this: ul { text-align: center; /* align text in element */ list-style:none; /* remove any list entry symbol */ } li { font-weight:bold; display:inline; /* show all three items in a single row */ } Hope this helps. Ryan Moore

Re: [WSG] Center Align an Unorder List

2007-07-25 Thread Francisco Lara
yes it's good, i like the float:left better than display:inline. On 7/25/07, Ryan Lin <[EMAIL PROTECTED]> wrote: Hi there, ul { display:block; width:100%; text-align:center; list-style:none} ul li {float:left; margin-right:5px} These two styles should get you this. Did I do it correct? Commen

Re: [WSG] Center Align an Unorder List

2007-07-25 Thread Francisco Lara
I think the easiest way I can think of is this: ul { display: block; width:100%; text-align:center; } li { display:inline; font-weight:bold; } On 7/25/07, Ryan Moore <[EMAIL PROTECTED]> wrote: Looking to Center Text on an unordered list. Example: Link 1 Link 2 Link 3 De

Re: [WSG] Center Align an Unorder List

2007-07-25 Thread Ryan Lin
Hi there, ul { display:block; width:100%; text-align:center; list-style:none} ul li {float:left; margin-right:5px} These two styles should get you this. Did I do it correct? Comments? Ryan Moore wrote: Looking to Center Text on an unordered list. Example: Link 1 Link 2 Link 3 Desired Eff

[WSG] Center Align an Unorder List

2007-07-25 Thread Ryan Moore
Looking to Center Text on an unordered list. Example: Link 1 Link 2 Link 3 Desired Effect: Link 1 Link 2 Link 3 I don't have my CSS Code Base with me right now so hopefully someone can lend a hand. *** List Guidelines: http:/

Re: [WSG] Usefulness of JSDoc

2007-07-25 Thread liorean
On 25/07/07, Keryx Web <[EMAIL PROTECTED]> wrote: Hi all! I have been wondering about the (absent) standard for documenting JavaScript: JSDoc. In PHP one can expect any seasoned developer to use PHPDocumentor (or something similar, like Doxygen). In JAVA one would expect Javadoc to be used by m

Re: [WSG] Usefulness of JSDoc

2007-07-25 Thread Ben Wong
On 7/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: So does it make code easy to understand or not? Make your mind up!! Well, that would depend on the quality of the documentation, not on JSDoc. :) Personally, I do try and make use of it, but there are some limitations which I am attempt

RE: [Spam] Re: [WSG] Using target="_blank"

2007-07-25 Thread Christie Mason
I'm not sure who wrote the below, but I'm hoping it was a sarcastic comment and not someone's real impression of real users. I've never met a user who even "liked" frames, and that includes me. Also, perhaps I missed a thread, but I've wondering if the increasing use of tabs has overcome any "n

Re: [WSG] Using target="_blank"

2007-07-25 Thread Gaspar
"frames for simplicity, ease of navigation" ?! for u i think!! u cant just think that's right just because u do it's easy for u... On 25/07/07, Designer <[EMAIL PROTECTED]> wrote: [EMAIL PROTECTED] wrote: > That has to be just about the nastiest version of all - I click a link > and get a new w

RE: [WSG] Usefulness of JSDoc

2007-07-25 Thread michael.brockington
>-Original Message- >[mailto:[EMAIL PROTECTED] On Behalf Of Ben Wong > >I personally wouldn't use it for production websites because >it inflates the size of the Javascript file, therefore forcing >the user to download more. Also it would tempt others to steal >code by making it easy to

Re: [WSG] Usefulness of JSDoc

2007-07-25 Thread Ben Wong
I personally wouldn't use it for production websites because it inflates the size of the Javascript file, therefore forcing the user to download more. Also it would tempt others to steal code by making it easy to understand. As a way of documenting code during development and for future reference

[WSG] Usefulness of JSDoc

2007-07-25 Thread Keryx Web
Hi all! I have been wondering about the (absent) standard for documenting JavaScript: JSDoc. In PHP one can expect any seasoned developer to use PHPDocumentor (or something similar, like Doxygen). In JAVA one would expect Javadoc to be used by most. However, except for Foundations of Ajax

Re: [WSG] Using target="_blank"

2007-07-25 Thread Designer
[EMAIL PROTECTED] wrote: That has to be just about the nastiest version of all - I click a link and get a new window. Fine, not what I wanted, but there was that other link that looked interesting, I'll just go back to the first window and open a few more links before I read that page. Hey! Where

RE: [WSG] Using target="_blank"

2007-07-25 Thread michael.brockington
That has to be just about the nastiest version of all - I click a link and get a new window. Fine, not what I wanted, but there was that other link that looked interesting, I'll just go back to the first window and open a few more links before I read that page. Hey! Where did they all go! Number o

Re: [WSG] an inline element (inside a block element) sibling of another block element

2007-07-25 Thread Rimantas Liubertas
A line of plain text. A paragraph. Another line of text. Now a question, Is this actually valid?? I recently recieved some templates of another designer and this was scattered all throughout the pages. I went through and put around them BUT is it valid??? Or is it a case of in Tra