Schwarttzy
-
Is It Possible to Do This with CSS?
Sorry not possible, the image is dependent on that width. I suggest you forget about 960px... and look into percentages because they work much better.
-
Crazy Fluid 2 Column CSS Design
I give up, time to use jQuery if (matchMedia('only screen and (max-width: 700px)').matches) { $('#sidebar').insertBefore('#finishing'); }
-
Crazy Fluid 2 Column CSS Design
And now I just don't want to use absolutes to do it... just feels wrong.
-
Should SSH Access be used with web hosting?
I use ssh all the time, works great.
-
Scalable image in wordpress widget background
That could turn around to bite you by using the 100% stuff.
-
Crazy Fluid 2 Column CSS Design
So much for coding on here... I figured it out anyway by using absolutes inside a relative. Not something I like to do, but is works just fine.
-
Is It Possible to Do This with CSS?
Woot! I thought I might have opened my mouth to soon but I got it. Link -> http://codepen.io/anon/pen/hIpyE
-
Is It Possible to Do This with CSS?
I can do this give me a second.
-
Target IE9?
Here's the code I use to target specific IE browsers on my website http://codepen.io/anon/pen/Jpzmo EDIT -> it goes in the head of the HTML file
-
expand div's height to fit its container
Got it completely, so here you go http://codepen.io/anon/pen/qBneu Keep in mind it isn't fool proof and has some pitfalls
-
Linux or Windows?
If you have to ask about whether to go Ubuntu or Windows, you should go with windows every time. Ubuntu or Linux is very fast, powerful, and secure but has the major trade off that everything becomes a pain unless you know what your doing because it…
-
Scalable image in wordpress widget background
background-size:cover; or background-size:contain;
-
Crazy Fluid 2 Column CSS Design
@pmac627 The background isn't working, because your razr is struggling with the CSS3 property of "background-size:cover" I don't think it looks glitched, I prefer it because it is nod that the design knows that something is mis…
-
Crazy Fluid 2 Column CSS Design
I should mention that the DEMO at http://schwarttzy.com/test/ does everything right now, except for one minor detail. The sidebar has to be above the content to work, which means it display first in the smaller screen code in the @media only screen …
-
Crazy Fluid 2 Column CSS Design
I think you have misunderstood the extent of my knowledge, and it not as simple as moving the sidebar below the content. Again the trick is to have two columns when you have both the content and the sidebar at the top, while at the same time when yo…
-
Need to float and slide box containing products
jQuery is not the way to go for this, position:fixed is definitely the code for the job