scottnix
-
Wordpress: show custom post types, by category
Check out the Answer on http://wordpress.stackexchange.com/questions/8100/custom-taxonomy-list-page I am not sure if it is exactly what you are trying to do, but you can create page templates to call those custom taxonomies that are in your custom …
-
EMs for media queries and layout
Never tried REM in a media query, it does work. However I am boycotting REM's, not to mention I haven't seen anyone else do it in media queries. ;x
-
EMs for media queries and layout
This may also be helpful https://chrome.google.com/webstore/detail/responsive-inspector/memcdolmmnmnleeiodllgpibdjlkbpim?hl=en It is a Chrome Extension that shows you information about the media query breakpoints used on a page. A nifty little feat…
-
Is it okay to use a 7000px + Image Sprite for Retina Ready Icons?
There isn't anything wrong with a sprite with an excessively large height/width, as long as the file size is manageable. I have made ones that are 5,000+ that are 150k.
-
Small CSS3 problem with Chrome only
A bulk of your problems are you have things that aren't prefixed with vendor extensions. perspective, transform-style, transition, backface-visibility, and transform, I actually don't track which ones need vendor prefixes anymore now that…
-
Review my Portfolio site
The biggest gains will be made through concatenating and minifying your files. Grade F on Make fewer HTTP requests This page has 9 external Javascript scripts. Try combining them into one. This page has 5 external stylesheets. Try combining them in…
-
Review my Portfolio site
Visually overall it looks good, looks like you have an issue with one of your wrappers closing early causing it to break along with a few other minor bugs. So visually the style is fine. The code however is sub par. Things like a class of ".m-…
-
Responsive Web Design AFTER Desktop Site Created?
SASS is way too fancy for me. I never really had a problem with plain old CSS. This is like driving a beat up automatic mini van because it gets you from point A to B, but having a Ferrari in your driveway (that you could drive) but you don…
-
How To Add Links When Using Figure Class
Just add the link inside the figure, it is perfectly fine to wrap elements with links in HTML5 (although works everywhere). Then set the link to "display:block" to fill up the available space. …
-
A Random Saturday CSS Challenge
http://codepen.io/scottnix/pen/gexdj Easy mode - Box Shadow Method Elapsed time 26 min. Whoops, messed up, fixing... [fixed]
-
Responsive Web Design AFTER Desktop Site Created?
But isn't that a lot of work? Nope, especially if you are using SASS (and hopefully Compass). Once your thought process shifts and you figure out all the cool ways to do it (where SASS/Compass come in), it can be super simple. It is hard …
-
why is my footer staying in the same spot regardless of content size?
The cause is this. float: left;width: 674px;height: 400px; The fixed height is the issue, remove that from the div containing the content.
-
Forrst Votes
You would probably be better off posting for feedback/critique on the CSS-Tricks forums, currently Forrst is just a self promotion network for designers to post things that get maybe 2 comments and then it is gone. The user experience there is horr…
-
Responsive Web Design AFTER Desktop Site Created?
Mobile first is really the way you set up the CSS, personally I rarely start with the actual mobile site when it comes to coding. You might already set up the code that way, if you are doing mobile-first correctly, the code ends up sooo much cleane…
-
Responsive Web Design AFTER Desktop Site Created?
I was mildly curious to see what people would say on this post. As someone who always goes the mobile first approach, converting it isn't hard at all. It does however take work, but personally I would use SASS, Compass and a grid framework (Su…
-
Vendor prefixes, Compass and Codekit [Need help]
Here are a few others that pertain to your document. @include background-size(cover); @include box-sizing(border-box); And multiple transitions. @include transition(color .3s ease-in-out, background-color .3s ease-in-out);
-
Wordpress hide categories from logged out users
You could use a conditional to remove the dealer category out of the loop using pre_get_posts for users that are not logged in. http://codex.wordpress.org/Plugin_API/Action_Reference/pre_get_posts Using pre_get_posts will allow you to do it as a fu…
-
Review and Critique my Website
This has to be someone trolling. The site is missing a table layout, other than that it is perfect.
-
Footer box is not stretching across the page
This is as simple as you have the footer inside a div that has a max width of 55em (#section1). The footer is 100% by default, you just have the parent element stopping it.
-
Seriously Though: What is the Best Way to Enque JavaScript?
Always load jQuery in the header for WP, this is where plugin authors expect it. Also the remove_action, add action bits on moving the scripts to the footer that way isn't the correct way to do it... you can set the location in the footer when…
-
Seriously Though: What is the Best Way to Enque JavaScript?
Enqueue it (if it isn't already) and leave it alone. http://pippinsplugins.com/why-loading-your-own-jquery-is-irresponsible/
-
Parralax scrolling website in IE
html5shiv is specific for internet explorers less than 9, so 6, 7, 8 only. You want to use a specific IE conditional for that. http://code.google.com/p/html5shiv/ Check the path to your IE style CSS, it is currently /stylev2.css the php echo crap d…
-
Problems with my website
Add "clear: both" to #pro_li_box_1_back The lower content is not clearing parts of the previous elements.
-
Parralax scrolling website in IE
You have the IE specific stylesheet loading before the normal stylesheet, Styles cascade, so it will always read the normal one last. Just place it below the normal styles. IE will read both, you want the IE one last.
-
Justifying a site redesign for an ecommerce website. I seriously think we need a redesign, but it's
Just a heads up, since you have a live test site, there is nothing keeping search engines from indexing it. http://rsatestamle.dminsite.com/3m/c/BR_1001_2/ Might want to toss in a robots.txt file and a noindex, nofollow meta tag. It is annoying whe…
-
Do we really need to change the site design
On a side note other than design, the code is a little atrocious. This page has 23 external Javascript scripts. Try combining them into one. This page has 12 external stylesheets. Try combining them into one. This page has 42 external background im…
-
What is the best way of clearing floats in css?
Overflow hidden is awesome, but if it can't be used and you are using SASS/Compass, just use the Compass utilities clearfix. .some-div { @include pie-clearfix; } Then there is no need to add extra classes or elements like a lot of people d…
-
How can I create a toggle with icons?
I made it super quick and then realized when I finished I totally could have used a psuedo element instead of adding the extra markup. :/ I might fix it later. ;x http://codepen.io/scottnix/pen/aGczs
-
Multiple instances of a media query in css doesn't work?
Has to be something lame, the code above works for me on PC with IE, FF and Chrome. You probably already know, but why not use a mixin to accomplish this and make the MQ's a little easier to write. I am currently using this mixin/method. I am…