ToxicFire
-
css minification
yui compressor doesn't strip browser prefixes
-
How to insert a attribute name in HTML (jQuery)
$("li").each(function() { $this = $(this); $this.text(""); var data = $this.data(); for(var key in data){ $this.text(key + ":" + data[key] + ", " + $this.text()); } }); based off this http:/…
-
How to insert a attribute name in HTML (jQuery)
not 100% clear on what exactly you want, im interpreting it as you want to basically get all of the attributes in the li element and insert both the value of the attribute and the name of the attribute into the body of the element. ie your example a…
-
Can pure CSS be used to change the background of multiple divs during a rollover?
ehh its just best practice http://www.jameswiseman.com/blog/2010/04/20/jquery-standards-and-best-practice/
-
How to disable the ´slash´ SVG image transformation effect in Script.JS Code...
=/ attempting to debug this issue, it just hangs on loading so hard to test in browser, advice is find there do_slash is called and try commenting it out see if that does it.
-
Can pure CSS be used to change the background of multiple divs during a rollover?
generally if your using a selector more than once inside the same scope stick it in a var, otherwise each time the selector is parsed its going to the dom. There will be senario's where jquery simply can be overkill for a small function, if jq…
-
Should SSH Access be used with web hosting?
Depends unless its a really really antiqutated hosting provider SSH will probably be an option you won't really ever use that much, unless you like getting stuck in at the terminal level. SSH is basically a remote terminal your account on the s…
-
Collective term for common web pages
duckduck go produces a couple of results suggesting "A charlotte of webpages" for the collective noun of webpages Though that isn't exactly what your asking. ponders hmmm usually its something like legal or disclamers but you want con…
-
Pointers for changing photo shape in gallery and portfolio....(Jquerymasonry??)
its an svg deformation not to hard to alter depending where the svg is been generated in the php.
-
Working with a designer whose work you hate
easiest way to explain to them a design is dated is to show them what their competitors are doing. @JoniGiuro flat design just feels like another variation on minimalism web design which has been a bit of a trend in the past year or so. Tbh I think…
-
Keeping floats from wrapping inside undefined width div
why do i think this is a sidewards scrolling menu bar?
-
Keeping floats from wrapping inside undefined width div
woah use css classes. and http://stackoverflow.com/questions/5616360/stop-floating-divs-from-wrapping
-
Firefox has a problem with negative margins?
couldn't reproduce your issue with negative margin but the error i did encounter which was slightly different was resolve by setting the span to position absolute rather than relative.
-
jQuery Problem - Probably me being an idiot!
just keep the api open in a tab its got good examples.
-
jQuery Problem - Probably me being an idiot!
$(document).ready(function() { $('nav li a').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover'); }) }); $(this) refers to the element or selection of element…
-
Getting a screen reader to ignore text
hmmm... my best guess would be set its default state to display: none then have a media query for visual devices set to display the icon front text. http://www.w3.org/TR/CSS2/media.html not sure if it will work but worth looking at. Alternatively …
-
::selection will not work at all
according to MDN doc's its normal behavior without targeting elements, what browser are you using @luke ?
-
IE10 - What do you think of it?
I'd probably say a big part of it is actually user awareness or lack thereoff people don't know they need to update their browsers or choose another one, hence why old versions of IE were still prevalent, as people often stuck with the def…
-
IE10 - What do you think of it?
I think ms has got it wrong thinking people want a desktop touch screen, e-whiteboard yah, tablets & phones yah, desktop nah. But thats an aside, IE 10 its another browser in the myriad of browsers today, with an engine that supports more of t…
-
My php is being turned into a comment.
Yuh, html files can't call php files like that. try changing the .html extension to a .php extension then try.
-
Need some help wih random height grid layout
@JohnMotylJr Neh thats just a standard grid system that goes from its horizontal layout to the vertical layout no steps inbetween. Something like this http://desandro.com/resources/jquery-masonry but i thought the one i saw was css only :S
-
Need some help wih random height grid layout
I think Gavii means a grid system where instead of just switching from normal layout to a single column for like mobile design it switches to a smaller multicolumn layout first with the number of colums depending on how narrow the window is I.e. a l…
-
Need some help wih random height grid layout
I think I saw a grid framework, like this a while back but I can't remember where and its not in my bookmarks or history.... I think mebe it was somewhere on code visually try looking through their archives for the past couple of months, you…
-
how to make my header/ navigation follow my slider.
try adding or changes these pieces of css #header.gallery { width: 1020px; /* Same width as the slider has */ } #header-logo { width: auto; margin-left: 130px; } #tabs { right: 0; margin-left: auto; }
-
how to make my header/ navigation follow my slider.
He wants the logo to stay in the same position in relation to the image carosel, when the window gets narrower, however looking at the DOM simplest way I can think of is to wrap another div around the header and the slider and center that using the …
-
min-width issue with IE7
The issue with IE7 is the inline-block of the container, in IE8 inline-block behaves correctly and collapses to the size of elements contained within, IE7 it doesn't unless you apply a few fixes first, so ya need to look up IE7 inline-block fi…
-
how to make my header/ navigation follow my slider.
Slight misunderstanding of what display: relative, means me thinks take a look at a css reference about the display property things should become a little clearer
-
filters in chrome and firefox
firefox seems to work with the svg version of it but the -moz nop, which is werid what else uses the mozilla prefix that isn't gecko engine. I just did a lil codepen to test it out and im having no trouble getting it working in firefox. (though…
-
filters in chrome and firefox
highly experimental no standardisation infact doesn't even work on mozilla's engine when im using their own examples. https://developer.mozilla.org/en-US/docs/CSS/filter