trinzia
-
CSS counter none and counter skip
In general yes, I've rearranged some of my Wordpress theme so I catch one use-case and place it elsewhere, but still would like to know if there's a way to catch the two scenarios above. For things like related search results in a 404 p…
-
which is the best shopping cart software ?
If you are a blogger, why not use Wordpress with an e-commerce plugin such as Woo Commerce. I haven't tested that one but they have a great reputation. I tried almost every cart on this page, and I disliked them all, so I'll be trying W…
-
Wordpress Mobile Navigation
Since I never found an answer or a plugin anywhere, I created a plugin for this, which I'll link in case anyone else hits on my post while searching the same thing. jQuery Mobile List
-
JQuery Masonry IE9 troubles
In case anyone finds my question, the answer from the author was never to use Margin: 0 auto.
-
Mutli Column List
You can in CSS, if you don't mind that it goes like: 1 2 3 4 5 6 li {display:inline-block; width:50%;} Floats etc can be used too. If that's no good, google on 'jquery list columns' will return sever…
-
@font-face rendering issue in Chrome for PC
Chrome was cutting my icons in half. IE wasn't working because of a bad woff conversion. Another long day. Paul Irish's worked for me: @font-face { font-family: 'MobileIcons'; src: url('MobileIcons.eot'); src: url…
-
responsive help
Thinking it over, first you'd want this in your head, probably before you import your css: meta name="viewport" content="width=device-width" And then could you test this? I would hope that it would catch any device with …
-
responsive help
More links: http://sunpig.com/martin/archives/2012/03/18/goldilocks-and-the-three-device-pixel-ratios.html This was very helpful for me to visualize what's going on. And then there's Modernizr media queries: http://modernizr.com/docs/#ins…
-
HTML and CSS code help
#navigation is styling id=navigation. # means id. ID is for items which are only used once in page. .blog-nav is styling any item with class = "blog-nav". Class is for items that are repeated. #nav .blog-nav is styling any item li…
-
responsive help
One user says that all the documentation is off because it's using zooms and things. Maybe this one: @media (-webkit-min-device-pixel-ratio: 1.5), (-o-min-device-pixel-ratio: 3/2), (min--moz-device-pixel-ratio: 1.5), …
-
responsive help
There's a thread here: http://stackoverflow.com/questions/6786701/droid-2-not-detected-by-css-media-query. Says your screen thinks it is 845px. I thought those screens were only about 2-3 inches across, no? try 845 + ?
-
Sticky footer problems
I had some issues with that too. I wanted fluid or fixed height header and footer, and also to be able to stick two items to the bottom instead of one. Here is one method: http://instancia.net/?p=196 It works by using the table-row property, and …
-
responsive help
Did you try putting that into the stylesheet directly, like: @media only screen and (max-width : 480px) { .outermargin { width:100%; margin:5px auto; } } I need to know if that works. :) I don't have a cellphone.