*** akozak has quit IRC | 00:04 | |
*** nyergler has quit IRC | 00:05 | |
*** JED3 has quit IRC | 00:29 | |
*** luisv has quit IRC | 00:39 | |
*** tvol has quit IRC | 00:48 | |
*** ArneBab has quit IRC | 00:57 | |
*** ArneBab has joined #cc | 00:59 | |
*** oshani has joined #cc | 02:08 | |
*** luisv has joined #cc | 02:15 | |
*** mralex has quit IRC | 02:35 | |
*** JoiIto has joined #cc | 02:54 | |
*** pmiller has joined #cc | 03:01 | |
*** nkinkade has quit IRC | 03:01 | |
*** pmiller has left #cc | 03:01 | |
*** JoiIto1 has joined #cc | 03:51 | |
*** JoiIto has quit IRC | 03:54 | |
*** mralex has joined #cc | 04:12 | |
*** oshani has quit IRC | 04:15 | |
*** mralex has quit IRC | 04:17 | |
*** JoiIto1 has quit IRC | 04:21 | |
*** JoiIto has joined #cc | 04:28 | |
*** izdubar has quit IRC | 04:33 | |
*** Odemia has quit IRC | 05:09 | |
*** Odemia has joined #cc | 05:09 | |
*** luisv has quit IRC | 06:11 | |
*** Kaetemi has joined #cc | 06:20 | |
*** luisv has joined #cc | 06:23 | |
*** wormsxulla has quit IRC | 06:24 | |
*** luisv has quit IRC | 06:26 | |
*** wormsxulla has joined #cc | 06:57 | |
*** bassel has joined #cc | 07:01 | |
*** bassel has quit IRC | 07:31 | |
*** jwagener has joined #cc | 07:45 | |
*** Odemia has quit IRC | 07:48 | |
*** Odemia has joined #cc | 07:49 | |
*** thisisparker has joined #cc | 08:01 | |
*** bassel has joined #cc | 11:23 | |
*** Nathaa has joined #cc | 11:42 | |
*** Nathaa has left #cc | 11:42 | |
*** tvol has joined #cc | 12:01 | |
*** jwagener has quit IRC | 12:41 | |
*** luisv has joined #cc | 13:16 | |
*** bassel has quit IRC | 13:29 | |
*** bassel has joined #cc | 13:29 | |
*** oshani has joined #cc | 14:14 | |
*** JoiIto1 has joined #cc | 14:34 | |
*** JoiIto has quit IRC | 14:37 | |
*** GatorAlli has joined #cc | 14:47 | |
*** GatorAlli has left #cc | 14:47 | |
*** oshani has quit IRC | 14:52 | |
*** nkinkade has joined #cc | 14:54 | |
*** michi_ has joined #cc | 14:55 | |
*** nyergler has joined #cc | 14:55 | |
*** luisv has quit IRC | 15:08 | |
*** JoiIto1 has left #cc | 15:50 | |
*** MarkDude has joined #cc | 16:02 | |
*** akila87 has joined #cc | 16:02 | |
*** thisisparker has quit IRC | 16:04 | |
*** jgay has joined #cc | 16:16 | |
*** luisv has joined #cc | 16:30 | |
*** mralex has joined #cc | 16:33 | |
*** oshani has joined #cc | 16:33 | |
*** akozak has joined #cc | 16:39 | |
*** JED3 has joined #cc | 16:50 | |
*** wormsxulla has quit IRC | 17:24 | |
akozak | mralex, quick CSS question: say you have a div that's floated right and then some divs after that. how do you make it so the later divs don | 17:34 |
---|---|---|
akozak | the later divs render after the float right div | 17:35 |
akozak | basically, how would I fix http://wiki.creativecommons.org/Jacobsen_v._Katzer | 17:35 |
mralex | clear:right or clear: both will push them down | 17:35 |
akozak | ah right | 17:35 |
mralex | hmm | 17:36 |
akozak | do I put that in an empty div or in the one that's float: right? | 17:36 |
mralex | the problem i see on that page is the File containers are too wide and intersect wiht the floated box | 17:36 |
mralex | they shouldn't be forced underneath it, unless you're going to put a lot of summary text in there | 17:36 |
akozak | mralex, yes | 17:37 |
akozak | the summaries can be quite long | 17:37 |
akozak | and I want the summary text to wrap around the float right | 17:37 |
mralex | it should wrap around the floated box | 17:37 |
*** tvol has quit IRC | 17:37 | |
akozak | mralex, right it works fine now, except when there's no summary I have this problem :/ | 17:38 |
akozak | should I just wrap the summary and float:right in its own div? | 17:38 |
mralex | floating the summary won't help | 17:39 |
mralex | your file boxes should be wrapped in a container div tho. mostly unrelated. | 17:40 |
akozak | mralex, yea I just noticed that | 17:40 |
*** wormsxulla has joined #cc | 17:42 | |
akozak | mralex, maybe I could just put the summary and float in a container itself | 17:42 |
mralex | that'll force the file's down underneath at all times | 17:43 |
akozak | mralex, I think that's desired behavior though | 17:43 |
mralex | if you want to do that, put a container div around summary and the float; and put overflow-y:auto' in it | 17:43 |
mralex | that'll ensure teh container div is at least the height of the float | 17:43 |
akozak | mralex, ah I think that worked | 17:44 |
mralex | yup | 17:44 |
akozak | mralex, thanks! | 17:45 |
mralex | might also want to put clear:both; in your File boxes, just to be safe | 17:45 |
mralex | fiel container boxes, that is ;) | 17:45 |
akozak | what does that actually do? | 17:45 |
mralex | forces the div to clear the float and go to the space below it | 17:45 |
mralex | people used to do <br style="clear:both"/>, which was icky. or zero height spacer div classes. not recommended any more. | 17:46 |
akozak | hmm | 17:47 |
mralex | don't mean to overcomplicate this :) | 17:47 |
akozak | the only way I knew how to use it was an empty div like display:none;clear:both; to force a container div to contain its divs properly | 17:47 |
*** akila87 has left #cc | 17:47 | |
akozak | like at the end of a container | 17:47 |
mralex | right, but that adds messy, non-semantic, html, and often extra height to the container that you don't want | 17:48 |
mralex | overflow-y:auto; is a better fix | 17:48 |
mralex | :) | 17:48 |
akozak | mralex, ah thanks for the tip! | 17:48 |
akozak | I might have to go back and change all of my templates :( | 17:48 |
akozak | is that supported in all browsers? | 17:49 |
mralex | yeah, but you have to be careful about margins and padding, sometimes you'll get scrollbars | 17:49 |
akozak | my worst nightmare | 17:50 |
akozak | haha | 17:50 |
*** oshani has quit IRC | 18:02 | |
*** balleyne has joined #cc | 18:03 | |
*** JoiIto has joined #cc | 18:03 | |
*** oshani has joined #cc | 18:05 | |
*** luisv has quit IRC | 18:29 | |
*** luisv has joined #cc | 18:33 | |
*** michi_ has quit IRC | 18:36 | |
*** oshani has quit IRC | 18:37 | |
*** luisv has quit IRC | 18:45 | |
*** luisv has joined #cc | 18:47 | |
*** johnsu01 has quit IRC | 18:56 | |
*** oshani has joined #cc | 19:00 | |
*** JoiIto has quit IRC | 19:05 | |
*** johnsu01 has joined #cc | 19:08 | |
*** johnsu01 has quit IRC | 19:17 | |
*** johnsu01 has joined #cc | 19:17 | |
*** bassel has quit IRC | 19:20 | |
*** bassel has joined #cc | 19:23 | |
*** tolsen has joined #cc | 19:23 | |
*** luisv has quit IRC | 19:28 | |
*** luisv has joined #cc | 19:29 | |
*** bassel has quit IRC | 19:36 | |
*** bassel has joined #cc | 20:05 | |
*** luisv has quit IRC | 20:20 | |
*** luisv has joined #cc | 20:20 | |
*** bassel has quit IRC | 20:23 | |
*** bassel has joined #cc | 20:29 | |
*** JED3 has left #cc | 20:29 | |
*** JED3 has joined #cc | 20:29 | |
akozak | mralex, say you wanted to create a modified version of a mediawiki or popular wordpress skin. would you make the effort to keep it connected to the main branch? | 20:48 |
akozak | that is, if I started to develop a cc skin for mediawiki's vector skin, should I try to branch it somehow? | 20:48 |
akozak | or would I just copy-paste and start modifying | 20:48 |
mralex | depends how big a change will be made | 20:49 |
akozak | hm, ok | 20:50 |
mralex | the stock theme is usyally a jumping off point for something completely different, so, no. | 20:51 |
mralex | if you're just changing hte colors, and not so much the layout, then sure. | 20:51 |
akozak | mralex, ok thanks | 21:02 |
akozak | nkinkade, do I have to do something special to git checkout the cc_wiki theme because it's in the themes category? | 21:03 |
akozak | nkinkade, ah yes I do, nevermind | 21:03 |
akozak | got it | 21:03 |
*** Che-Anarc has joined #cc | 21:20 | |
*** erlehmann has quit IRC | 21:28 | |
*** MarkDude has quit IRC | 21:28 | |
nkinkade | mralex: Do we have a Google Webmaster Tools account? | 21:28 |
*** erlehmann has joined #cc | 21:28 | |
mralex | nkinkade: i'm not sure. | 21:29 |
nkinkade | mralex: That's probably all the answer I need. :-) | 21:29 |
mralex | :) | 21:29 |
nkinkade | If you don't know about it then we probably a) don't have one b) aren't using it at all | 21:30 |
mralex | right | 21:30 |
*** karlcow has quit IRC | 21:36 | |
*** bassel has quit IRC | 21:42 | |
*** bassel has joined #cc | 21:46 | |
*** mralex has quit IRC | 21:50 | |
*** mralex has joined #cc | 22:05 | |
*** mralex has quit IRC | 22:07 | |
*** mralex has joined #cc | 22:11 | |
*** balleyne has quit IRC | 22:20 | |
*** jgay has quit IRC | 22:28 | |
*** karlcow has joined #cc | 22:33 | |
*** thisisparker has joined #cc | 23:19 | |
*** tolsen_ has joined #cc | 23:37 | |
*** tolsen has quit IRC | 23:38 | |
*** thisisparker has quit IRC | 23:45 | |
*** bassel has quit IRC | 23:53 | |
*** Kaetemi has quit IRC | 23:54 |
Generated by irclog2html.py 2.6 by Marius Gedminas - find it at mg.pov.lt!