| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Comments:
<0> I extend the syntax of JS/CSS a little <0> and of HTML <0> add custom contstructs, tags.. <0> that make life easier <1> paranoia? of what? <0> plus I'm comments freak, maybe 35-40% of my code is comments <2> yikes :p <0> well I'm overstating it but <0> let's say 30% <1> hehe ok <0> the good part is I can open the thing a year later and feel at home :D <3> can someone help me remove the bullets onthe left-hand menu in IE on http://caninecorner-bmd.com/main/training ?
<1> bkudria: list-style-type: none; <3> Seriema: that works in FF, but not in IE :) <2> bkudria: lies <3> reisio: take a look yourself! it works in ff, but not in ie <1> bkudria: I had the same problem. it does work in IE, but you kinda have to place it here and there and finally IE will get the point <2> ul { list-style: none !important; } <1> but IE doesn't support !important? <1> ;support !important <4> Seriema: !important { IE 6: I | IE 7: I | Firefox 1.5: Y | Opera 8.5: Y } http://www.webdevout.net/browser_support_css.php#support-css2importance-important <1> hehe <2> yes, it does <3> ok, i'll try that <1> bah <5> how well does IE support !important? <4> GarethAdams: It has some problems with !important. - http://www.webdevout.net/browser_support_css.php#support-css2importance-important <3> reisio: err, didn't work <5> nice and specific, Minibot <5> well done <6> hi GarethAdams <3> reisio: so you have no idea how to get rid of those bullets ? <2> already told you <2> maybe you have a syntax error <2> http://validator.w3.org/ <2> http://jigsaw.w3.org/css-validator/ <3> I'll check <7> anyone know how to get IE to read custom tags? I created a tag red {color: red;} firefox reads it fine but IE will not <3> err, you can't just use custom tags <8> rjdave: You can't add custom elements to HTML. <6> you mean like <red></red> ? <6> nope <6> can't <7> so it will only ever work in firefox? <3> don't even do <div cl***="red"></div> either <8> rjdave: The language contains most things you should need, and you can refine it further with cl***es. <3> rjdave: it might stop working in firefox! <7> yeah, didn't want to do that <7> it's for a blog <7> i wanted users to be able to see a tag like <red> instead of <span cl***="red"> <6> write an xml parser <6> :D <8> rjdave: Readers shouldn't care about source code. If you're writing for authors, then you can have them write content in a custom XML language and then transform it to HTML on the server. <9> or if it's for a post that they write, just do [red][/red] and get the server to parse it when displaying the say...comments! <6> or you could make something that does regex replacement in php or perl. <7> didn't want to do that either since I'd have to convert back if they wanted to edit. Also I'm using wordpress and this was supposed to be a rush job <9> rjdave: store the comments in a database and only format them (e.g. turn [red] into <span...) when you need to display them
<8> rjdave: You wouldn't need to convert it back - just store both versions. <7> Dorward: then I'd have to modify the database and who knows how many functions <9> Lookup str_replace and the likes if you're using php, it is MUCH faster than writing your own function since it resides in a dll somewhere.... <7> i know how to do what you guys are suggesting <7> I was just hoping not to have to <7> wouldn't even be an issue if my boss wasn't such a pick bastard <9> heh, careful what you say :p <9> How exactly does he want it? <7> he's a scientist but when it comes to webpages he turns into a graphic designer <9> I have no experience with dealing with bosses like this (I only ever seem to hear about it) because I'm 18... but couldn't explain to him in any sort of shape or form? <10> How can I put tooltips on elements other than anchors? <8> clotman: Same way as you put them on anchors. With the title attribute. <10> Dorward: Thanks. <11> I cannot understand why the green background is only repeated in the top : http://www.coachkontakt.dk/fileadmin/template/main/CK_template.html Can someone help me out? :) <9> because both the left and centre are floated... <11> ohh i see...what can i do about it? <9> move the left column above the centre content (int the source and only apply float: left; to that column <12> LEMONed: Figured you might want to see it: http://myspace.com/electrofuzzel ;) <9> and remove float: right; on the centre bit of text.... <9> That might work... but it's the start I'd take about fixing it <9> oh Cody` that's nice.... <12> Best looking myspace I think I've ever seen =p <9> You had to put in a survey though didn't you? :p <12> haha <12> Nah I've seen some good ones <12> There was a site I found off 9rules somewhere <12> that had a ton of really nice looking ones <9> good looking MySpace profiles or ....surveys? o.O <13> Howdy <9> stupid question really lol <12> erm myspace <12> LEMONed: Give me a few, I'll post it on my blog <12> I'm going to publish it <12> that's the first step in getting banned =d <9> Are you sure you wanna do that!? <9> lol <13> Is it possible to set an image to the foreground of a css cell? the cell will contain a table and they want to set a transparant image as a foreground to give the table the appearance of being under it. <12> LEMONed: Yeah, because I can show one of hteir ads at the bottom <12> their* <1> krunk-: yes, use z-indexing <1> ;support z-index <4> Seriema: z-index { IE 6: 62.5% | IE 7: 62.5% | Firefox 1.5: 87.5% | Opera 8.5: 87.5% } http://www.webdevout.net/browser_support_css.php#support-css2propsbasic-zindex <13> thanks! <1> np <14> !v http://www.datatheandroid.com/console/forum/forum.dmb?action=view&forum=[f1] <15> HTML: Not valid - Error: 1, http://validator.w3.org/check?uri=http://www.datatheandroid.com/console/forum/forum.dmb?action=view%26forum=[f1]/ <15> CSS: Valid - http://jigsaw.w3.org/css-validator/validator?uri=http://www.datatheandroid.com/console/forum/forum.dmb?action=view%26forum=[f1]/ <14> Um. As it says "CSS: Valid"... <1> ;support min-height <4> Seriema: min-height { IE 6: N | IE 7: 37.5% | Firefox 1.5: Y | Opera 8.5: 87.5% } http://www.webdevout.net/browser_support_css.php#support-css2propsbasic-minheight <6> AndroidDat1, huh? <1> GAH STUPID IE!
Return to
#css or Go to some related
logs:
#web FC5 -nolisten tcp vt7 #php dsbeerf mute onboard speakers linux 82801G lm-sensors x0vnc fc5 #perl 8139too 1and1 isapnptools dapper
|
|