TheDoc
-
Does anyone NOT use a preprocessor?
I have to assume he's trolling since this is from his own blog: Using the SASS mixin has definitely increased my overall workflow speed which is probably the greatest benefit. and Hopefully you are using SublimeText as a text editor …
-
Does anyone NOT use a preprocessor?
Preprocessors are for newbs who aren't good at CSS, plain and simple. Plain and simply: wrong. I guess I'm a newb? @chriscoyier is a newb? Paul Irish is a newb? The more repetitive the CSS, the more opportunities you have a chanc…
-
Matching Height Without the Extra DIV?
That's why I wrote: It's not working inside of the pen, but I think I'm doing that right so it might just not like the iframe.
-
Matching Height Without the Extra DIV?
Why would you add overflow: hidden; to my example? Not needed. Here's a little update to include the resize: http://codepen.io/ggilmore/pen/2a6374b2cefaaabc439ad65afc236605 It's not working inside of the pen, but I think I'm doing t…
-
Matching Height Without the Extra DIV?
Safest way would be to have a wrapping and targeting that instead: http://codepen.io/ggilmore/pen/2a6374b2cefaaabc439ad65afc236605
-
Automating CSS updates across several clients
Hmmmmm. Can you not just have them all linking to the same CSS file that you've hosted on a CDN?
-
What is your favorite coding environment?
Just going to close this one down since we have so many of these threads already. Feel free to contribute to one of the other threads! http://css-tricks.com/search-results/forums/?q=fav+text+editor
-
Full Width Background Image Sizing
Generally you just use background-size: cover, but there is some crazy CSS going on here. margin-left: -1600px; margin-right: -1600px; That's a huge red flag.
-
How to collaborate with other developers?
At our office we use http://campfirenow.com/ and http://www.getflow.com/
-
Positioning of element
The first parent that has any type of position assigned to it. Could be relative, absolute, or fixed.
-
Clearing Divs Question
I think you'll find most people prefer to use the clearfix method: http://nicolasgallagher.com/micro-clearfix-hack/
-
Class assignment critique?
You had seven missed closing divs (all of the sidebar stuff) Your JS was violating a very important rule: DRY (Don't Repeat Yourself) Both of those fixed here: http://jsfiddle.net/mgmdp/2/ Another note: try to refrain from using . They sho…
-
iphone optimization
As for your question, you should be putting that tag before your closing tag. Is that what you meant? Do you have a link to the site? What do you mean by "...it's not changing anything"? What are you expecting it to change?
-
iphone optimization
@rwchampin - to show inline code, just wrap it with backticks `. If you want to show blocks of code, just make sure to indent by four spaces or select the text and use the code button above the editable text area. like this
-
Wordpress - first loading need long time
@jimmyniceguy - is that using a proper timer or just your own estimates? I'm using the Chrome Inspector network tab.
-
Wordpress - first loading need long time
I should say: those load times are slower than it should be for a site that is < 1mb, but it's difficult to pinpoint any specific issue.
-
Wordpress - first loading need long time
Could just be your own connection? First load for me was ~5sec. Subsequent loads were ~3sec. Your Twitter callbacks are failing a bit, not sure if that's causing a hang up for you. Looks like you've got some duplicates going on, as well:…
-
Wordpress - first loading need long time
Can't help much if we don't have a link! Also, who are you hosting with? If you say 'GoDaddy', there's your problem.
-
border none last-child not working in php dynamic list
For starters, #contentWrapper:last-child shouldn't work because that's an ID and there should only be one of those on the page. Update that to use a class instead. Next: Codepen doesn't work with PHP, since it doesn't have acces…
-
FOR loop with counter in variables
You would do something like this: $my_var = get_field('some_field'); if( $my_var ) { echo $my_var; } Or, if you want to output the field without checking if it exists or not, you'd go like this: the_field('some…
-
FOR loop with counter in variables
the_field() outputs, get_field() does not.
-
Does anyone NOT use a preprocessor?
I couldn't imagine going back to just CSS. I don't have time to reply to this right now, but hopefully I can remember tomorrow!
-
Tooltip JavaScript Messing With jQuery Masonry For tumblr?
It's probably because you're including another version of jQuery that is throwing it off. Try removing the first script (linking to Google's CDN).
-
jQuery fadeIn text, delay, and fadeOut text bug
Because it's technically already showing. It needs to have display: none; on page load: http://jsfiddle.net/c9BZB/1/ Having said that, it's probably not a very good idea to remove an error message after a certain period of time.
-
Chrome Canary - no styles
Canary just recently completely shit the bed on Windows. I think they've released a couple updates for it though? Just keep updating each day.
-
WordPress Broken Theme, Template is Missing Error
I'm saying the file name must be style.css, not styles.css
-
WordPress Broken Theme, Template is Missing Error
Must be style.css.
-
Statistics mobile internet users
In short: you can't get that data. The only data that companies can report is information they receive from users visiting their own website (or websites that they have made a deal with to track stats from). There isn't going to be one re…