ToxicFire
-
[Solved]Does the location of media queries affect the website?
Another thing to think about is wether a 3rd party is going to ever modify your code, having everything hocked under one mq may reduce code bloat but on the other hand if you have two components that just happen to coincide under the same mq (rathe…
-
Useful Docs: Legal Documents And Contracts For Designers
Anyone got one for the UK?
-
Weird firefox css render
rendering the bug in firefox 18 on linux mint, but i fixed it by disabling (in firebug) border-left in .hand:after and border-right in .hand:before
-
Offering responsive web design to clients
calling responsive web design a trend makes it sound as if its something thats a passing design fad, simply its not, a few years back you could have gotten away with a static sized site how ever most likely you'd have built your design around e…
-
CSS 2 Layer Drop Down Menu-Help
Js basically is just duplicating the css :hover so is redundant. As for keeping the menu dropped down the code to do that is already in there you just need to give the section li a class of over on that sections page blog blah …
-
CSS 2 Layer Drop Down Menu-Help
Aiming for something like this? http://codepen.io/anon/pen/qGzgA
-
"show fullversion" of mobile site
is get actually pulling version in? ie is the problem with it been stored in the session or it actually been passed too the page in the url. Also could we have an example of the link your using to pass the version.
-
When building a responsive website should I start from mobile layout or web layout?
Tbh its an on going question without a definative answer, one way you could think about it is, not to catergorize it as mobile or desktop but a design that scales. Consider what its primarily going to be viewed on though that should affect how you a…
-
advice on the correct way to use a css sprite
That's alot of image's, personally first I'd go through those and see what can't be replaced by a much more reusable piece of css. As for how to divide your sprites up depends on how big a single sprite file would be, and how ma…
-
Compass & Codekit - either or, or both?
Second that on the video about grunt, i've been using it in my last few developments made development and deployment far faster.
-
Do I really, really need to move to SASS?
@Zoom A response 1) Yuh you need to install the preprocessor, but chances are your already setting up some kinda of development server on your own machine and its not hard to install. You can edit it with notepad all you need to do is compile it a…
-
Stopping a loop
http://www.ryerson.ca/JavaScript/lectures/flowControl/transfer/breakContinue.html
-
WordPress Workflow with git and forked blank theme repo
just get latest versions and work from those pulling updates will likely cause unexpected breakages.
-
Explain this Javascript?
The way i read it is, locates a text area used for sending tweet stores it in var, $.contextMenu (non standard jquery function not in the api, third party plugin prolly) builds a popup menu when left mouse is used on a an element, with two options V…
-
Centered content with left and right image border
http://css-tricks.com/examples/GradientBorder/ adapt for images rather than gradients and ya have a nice choice of methods
-
IE8 vs My Site
I'd go even further and say you don't need a seperate style sheet just tackle it like paul irish http://paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither alternatively you can polyfil if you really need to http://sel…
-
Adaptive Vs. Responsive Website Design
@iamaaron thanks, theres probably a variety of reasons why people cater to specific devices ranging from simply not wanting to have a truely responsive design to lack of awareness of the range of resolutions out there. As for the pixel width's …
-
Adaptive Vs. Responsive Website Design
I'd argue wether the term adaptive design really exists simply because its a bit self defeating, adapting (which is the same as responding in this context) to SPECIFIC width's/height's (where theres more than one height or width) will…
-
Is mobile and desktop web development diverging or merging.
heh, I do mobile and responsive design, i was just prompting a little discussion on where things are going as the desktop enviroment is becoming more mobile like ie touch screens at the desktop moving away from a tradiational pointer based interatct…
-
How many media queries is too many?
Simple fact's, inline styling and style tags shouldn't be chosen over external stylesheets, because a) it will cause massive specificity issues b) it will actually cause harm to your sites performance, your html response won't be ca…
-
The Price Is Right - How much would you charge for this Wordpress project?
@djdaniel150 the design income comes from development of the templates not the deployment in circumstances like wordpress.
-
SEO factor affecting web visibility in search results ?
SEO has become a complex over confused issue tbh. But there are a few simple things to think about. Google's (and other) algorithms are probably smart enough to pick up on when sites are deliberately trying to artificially inflate their ranking…
-
IE10 - What do you think of it?
@jamy_za yuh had some issues to more uptodate versions require some finagling to get to work can't remember why but the bookmarklet on css-trick works nicely
-
IE10 - What do you think of it?
@jamy_za just use firebug in ie
-
Selectively Serving Images Using HTML5 "data-" attribute & Match Media for Responsive Site
oh your using jquery, aswell in that case try $('.support img').removeAttr('width').removeAttr('height'); might have better chance.
-
Selectively Serving Images Using HTML5 "data-" attribute & Match Media for Responsive Site
http://reference.sitepoint.com/javascript/Element/removeAttribute try inserting this bit of code at the last but one line of the code above img.removeAttribute('height'); img.removeAttribute('width');
-
CSS filters your opinions
SVG version of filters rather than the predefined ones allows a bit more flexibility
-
Stacking Blocks using Bootstrap
Been a couple of projects since i used boot strap but if i remember rightly bootstrap's grid doesn't behave the way you think it does. the dynamic grid has a basic structure roughly like this. One row, a standard block div with a max-widt…
-
Why don't these @media query rules get applied?
throws paulie a css linter your @media screen and (min-width: 960px) statement above the max-width one hasn't been closed out properly with a }