| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11
Comments:
<0> Cracker2: "="? <1> s/=/:/ <2> um <3> Dorward? <2> <div style="css_property1: value; css_property2: value;"> </div> <4> also, why are your quote characters escaped? <2> Cracker2: the syntax is all wrong <2> Cracker2: and you are using quotes for somereason <3> it's because variable <2> ok <2> but it should look like height: 84px; <2> not height=84px; <1> http://www.youtube.com/watch?v=3a_KlCMuEAM <1> rofl <3> all works, thanx <5> Hi All :)
<6> how can i disable whitespace in my html pages from being shown as spaces? <6> i want all the spaces to be specifically defined as <5> You cant <4> you can control breaking to some extent tho, right? <1> majd: s/\s/ /g <1> majd: done <4> heh <1> you probably *dont* want that though <1> lol <4> I'm not sure <html> <body> is legal <6> no i on't <6> lol <1> _W_: the v selection was implied ;) <4> `css white-space <7> Found for CSS 2 - white-space - http://www.w3.org/TR/REC-CSS2/text.html#propdef-white-space <4> you probably want white-space: nowrap, possibly in combination with something else <6> ok, anyone have internet explorer? <6> this is getting out of hand <5> I have IE 7 <8> How do I insert a row into a table? <9> i take it you mean with javascript <6> Wyld_Devil, how to the checkboxes look in http://71.65.19.97:81/mla/dummy.html <9> same way as you insert any node in DOM <6> on the left <9> only keep in mind that with IE, you _MUST_ have a TBODY element inside your TABLE that contains your rows <6> CrazyTux, you talking about databases? <8> majd, nevermind, I ws being an idiot .... insertROW was supposed to be insertRow <9> in the html its unimportant because ie creates it internally, but when creating via DOM, your rows will not show up unless they are in a TBODY/THEAD/TFOOT <6> k <5> majd they look normal to me <10> how can I get the location of an element? e.offsetTop and e.offsetLeft are both returning 0 <6> Wyld_Devil, you have ie6/5.5/5? <8> With prototype, say I want to get the number of rows in a table how would I do so?? my_Table = $('my_Table'); my_Table.rows.length ? <5> 7 Beta 3 <11> I'd ask the authors of prototype CrazyTux <11> I'd just use <5> Hold on... I broke IE. *grins* <1> do you think that years from now, i'll just somehow map vim to my brain? <1> and do my editting by thought alone? <11> document.getElementById('my_Table').getElementsByTagName('TBODY')[0].length or similar depending on how you want to handle THEAD.TFOOT etc. <8> hax, lol <6> hax, you think my site would get dugg? <1> majd: yes <6> personally i think it'll get dugg overnight <1> make sure its really well polished <6> yeah <1> and can handle the digg <1> but yes <6> pfft <1> i think its very smart <6> i gotta scriptaculousize it <6> i built it from ground up without any javascript <6> i dont wanna give anyone in the comments reason to say anything but "wow" <6> i can't figure out where else to promote it <6> i'm gonna try to put some ads on sparknotes.com if i can afford igt <9> nothing wrong with a little javascript <9> though i may be a little biased, javascript is my job :p <6> gxti, i'm gonna add javascript when i'm done <10> anyone? <1> majd: i'll help you promote it when you get that far :P
<6> heh <6> post on every forum i can imagine <5> playing w <5> opps <12> ith myself? <-- rest of your sentence? <5> no <12> heh just checking <5> playing with letter recogniser ;) <13> how do i open a new window on a anchor in xhtml, target="blank" is not allowed <4> Adriaan, have you consider not doing that? <4> a user can use his browsers functionality to do that if he so wishes <13> true <13> well its an link to a extern webpage <13> i could ofcourse javascript use for that but i dont know if there is an easier way? <4> btw, http://www.w3.org/MarkUp/2004/xhtml-faq#target <4> Adriaan, mark it as a link to an external page <4> using styles or text or whatever <4> then the user will know to open in new window if that's what he wants for external links (he usually don't, and you forcing his hand is seldom apreciated) <13> _W_ ok, is there btw a way to do that in css? <4> sure, add a cl*** to the external links, and apply some styles in a selector for that cl*** <4> I think wikipedia's way of displaying it is nice <13> _W_, i have a look :) <4> you can also do something like a[href ^="http://"] <4> (yes, I nicked that example from wikipedia's styles) <13> i see :) <4> probably have nowhere near the browser support of simple cl***es tho <14> are there any client-side browser technologies that start with the letter N? <4> Netscape? <15> mythril: why "N"? <16> I have a CSS problem with a page in MSIE6, the menu is appearing above the content.. http://browsershots.org/website/1186081/ <16> im on a mac, so i don't have IE myself.. <17> hmm <17> how do you center a table without centering the text inside of it with css <4> +center <7> http://dorward.me.uk/www/centre/ <18> +centre <7> http://dorward.me.uk/www/centre/ <18> Anyway ... <16> maniaman: can't you just put 'text-align: left;' on the text element.. <18> Maniaman: that's a good article. <15> Maniaman: but centering and text centering are different attributes.... <6> hax, you still there? <18> They are, yes. All explained in the above article. <1> majd: yeah <6> k <19> larsB: I'm looking it over right now <15> Windrose: yes just looked at it, not too bad. <16> blis***: but if you center a table, wont the <p> then inherit it? <16> Blis***2 that is, sorry. <14> Asynchronously Negotiated over TCP/IP HTML RSS AND XML aka A.N.T.H.R.A.X. <15> larsB: depends on how you do it, a table is a block... <18> larsB: no. You center the table by setting its left- and right margins to 'auto'. That isn't inherited. <20> Windrose hiya <16> windrose: of course, i was thinking more of align <15> actually I usually set left and right to specific % (the same), because otherwise annoying things can happen. <20> Windrose hiya <15> larsB: but align you specify it either a non-CSS attribute... <17> xhtml doesn't like align="center" does it? <17> i always thought it was better to use CSS for that stuff <21> Hm. Can I get some feedback on my site (so far)? URL: http://ejfox.com/Redesign/ <18> Maniaman: neither HTML nor XHTML like that. Centring is done using CSS - as described above. <16> Blis***2, that's right of course, my bad.. <18> krisp-athome: evenin' <20> :) <6> guys check out Synergy http://71.65.19.97:81/Synergy.mov <4> majd, why, and what is it? <4> (I'd really *really* prefer a text intoduction before I choose to download any video) <6> _W_, it's cool <6> it's a way to use a single set of mouse and keyboard across multiple computers <6> without the need for extra hardware <18> majd: ah. Like x2x. Or VNC ... <4> ie netop/remote desktop? <20> vnc rocks
Return to
#web or Go to some related
logs:
windowmaker frameless aedating cart problem quotaon Device or resource busy #linux ttf2pt bad bbox ubuntu nice as user debian libqt-mt #css #suse Can't Locate Object Method signal_connect
|
|