redhornet
-
css minification
Thanks Mottie I didn't thought about this case. I will add this definitely! Cheers!
-
css minification
Anyway 10x for the suggestions. I launch my compressor and can see it here. I hope to be helpful. I tested with a few sites and worked well.
-
Site showing Scroll Bars in IE8 :(
I haven't saw any problem unless this site load very slow and layout jump when i hover on some product.
-
Center Center a Div
About the horizontal centering you may use margin:0 auto; only if you set some width of your div element; You may also use more clever way with position relative. I Use this approach when have to centering ul elements which is with display:inline by…
-
Make my website mobile friendly
If you dont like @media which has no sense, may be you can try with some javascript library. jQuery Masonry is something that you may use, but I am not so sure if that is what you are looking for. To build your site on entirely liquid base is not v…
-
iphone view issue
Try with this meta But from the issue You described, I think that you have some css conflict. Btw I have seen that you use bootstrap framework. I had fight with this framework a week ago and i had to make some major changes because of a few pr…
-
Help me learn JS and JQ
Read some books or visit w3schools. First start with javaScript. If you want to learn something, read and write code, try to do some stuff and examine some examples, to see how it really work.
-
CSS problem in IE :(
I see you are very lost in this project... this site looks very bad on firefox either. About ie8,7 , you can emulate them with ie9. Press F12 and from browser mode option select the version of IE, with which you want to see how your site look like. …
-
Cannnot make top margin work on this div
Use padding instead. Or you can set margin-bottom on .sidebar and .content. That way the height-est element will push down your container. Both .sidebar and .content are floating elements and somehow you cant use margin-top against them. Notice if …
-
Is opacity: .5 equals opacity:0.5 for all browsers
10x joshuanhibbert, that was what I asking for