Philben
-
Feedback for a Client Consultation
You may also consider optimising it for different devices.
-
Do I need a contract to sell my web design services?
Thanks guys - very helpful tips!
-
Combining multiple media queries for the same styles
iPad screen size is 1024 x 768; so media query like: @media only screen and (max-device-width: 1024px) { /* all elements must be scaled here */ } This will cover all devices with width 1024px or less including iPhones.
-
horizontal web page
I've not implemented it in a project before, but I thought it could get you started. You may need to read his documentation if you find it helpful to your needs.
-
New website - feedback please!
@noahgelman: thanks for the suggestions.
-
New website - feedback please!
Thanks guys, all suggestions will be taken into account. @mcjohnst: It's not CMS, so will attempt hijacking HTML5BP's htaccess; not sure if the hosting package gives access to that file tho. @lucas572: that's good observation; I…
-
New website - feedback please!
@theacefes: will sort that out, thanks. @JohnMotylJr: I'm not, u got suggestions as to how to handle that?
-
Jquery Slider Div
You'll need to remove debugger "console.log()" references.
-
Jquery Slider Div
Hey! Mottie example works ok, but just in case you want to consider jQuery UI animation version; you may check Your text to link here.... You'll need both jQuery & jQuery UI links $( function(){ $(".module").not('#one'…
-
How to create responsive design only for mobile devices not for Tablet/tabs like iPad etc??
You should consider @andy_unleash comments tho.
-
How to create responsive design only for mobile devices not for Tablet/tabs like iPad etc??
If I understand your question? Your media query screen max-width should be 480px since tablets screen sizes are usually over 1000px.
-
New Site Feedback Please
@andy_unleash - Yes, Html5 shiv will do the same job, I should have clarified that. But currently it's showing un-identified element in IE8, so you might want to debug that.
-
New Site Feedback Please
Good work! Few issues - it breaks in IE8 and less ( not sure of your target users tho). You might want to consider appending your Html 5 elements to the DOM for wider support. It might be personal preference, but I find your portfolio list a bit too…
-
IE not displaying site correctly...?
Ah! found a post which does same thing, here: http://www.codeproject.com/Articles/366272/How-to-Get-IE8-to-Support-HTML5-Tags-and-Web-Fonts
-
IE not displaying site correctly...?
Please help, how do u get a sample code to show? I've indented it but still not showing.
-
IE not displaying site correctly...?
From what I can see your html 5 elements (eg: article) are being ignored by IE ver 8 & less. So far as IE ver 8 & less are concerned, those elements don't exist, so your classes will also be ignored. One solution is to append those ele…