-
-
-
-
-
Which is the easiest CMS for designing?
But the question is about which is the easiest CMS for designing, not which has the most extensions, is the easiest to install or the easiest to develop with. Those would be different questions...
-
Which is the easiest CMS for designing?
Disagree with you on that one. Personally, I find it far more logical than the same process for Wordpress. Horses for courses though I guess... Exactly the same as Joomla.
-
AblazeRich reacted to a post in a topic:
Responsive Web Design / Website that Re-sizes Depending Upon Browser
-
AblazeRich reacted to a post in a topic:
Responsive Web Design / Website that Re-sizes Depending Upon Browser
-
-
I suck at art, how do I get the colors right?
Fortunately, science can do all the hard work for you. Colour Theory, Google it. + Andy's link.
- Looking for Web Designers
-
Looking for a design partner
Oh, so you want a designer to work for free? Don't expect a lot of replies. Do you also ask you dentist / lawyer / accountant if they will work for free? Is your shop giving away goods for free? No, then don't ask designers to work for free. Design is a profession (pays our rent, feeds our kids, etc.) and we don't just pull incredible designs out of a magic hat. What's that? If we do a *really* good job you *might* give us something? Moron. I support Anti-spec, http://antispec.com/, as should every professional designer.
-
Responsive Web Design / Website that Re-sizes Depending Upon Browser
Why? Both methods I linked to, and Rich's site, are already using just a list of links for navigation...
-
Responsive Web Design / Website that Re-sizes Depending Upon Browser
Whoah! Looking much better already Drop-downs are always somewhat of an issue for small devices. Personally, I prefer a single level menu that converts to a drop-down on small screens. I posted some code (and my thoughts) about this approach on my blog this week: http://internet-inspired.com/wrote/thoughts/on-responsible-responsive-navigation If you really want to go with a multi-level menu, the best responsive solution I have used is Flexnav: http://jasonweaver.name/lab/flexiblenavigation/ and it's easy to integrate with html5bp.
-
Responsive Web Design / Website that Re-sizes Depending Upon Browser
Sorry, I didn't mean to come across as being so critical. The first sites I ever built were from Dreamweaver templates as well Honestly though, I think you will find things a lot easier if you start with a modern foundation.
-
best e-commerce software to use?
http://www.shopify.com/ Job done.
-
-
Responsive Web Design - First Attempt
Bonus points for doing the banner all in css, I would have just used Fittext (http://fittextjs.com/) I think, but your JS free solution is admirable.
-
Responsive Web Design - First Attempt
I like the design, but you shouldn't set a max value here: <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> That disables accessibility features in a users browser. Just set device width and initial scale and leave it at that, it will still always fit onto smaller screens as intended.
-
hidden text
Addendum; you should be more concerned about accessibility for real users than Google. If you take care of real users, Google will also be fine and in fact will appreciate that you are building for real users first. Build for accessibility.
-
hidden text
Doesn't it depend how it is hidden? Use javascript to hide the text, no problem. No accessibility issues, no issues for robots. Use javascript to reveal text you have hidden with css: problem. Bad for accessibility, bad for robots. Don't do that.
- New Joomla 2.5 Site Teething Problems...Help!
-
Responsive Web Design / Website that Re-sizes Depending Upon Browser
The best advice I can give has already been mentioned a few times, start with a modern framework. No offence, but the whole 3-column layout thing and all your styling inline it looks like something Dreamweaver would have spat out in 2001. The underlying code is old-skool, asking it to perform like the latest and greatest is like expecting to watch a 3D hi-def blueray, in it's full glory, on a 19" black and white CRT. Just take html5 Boilerplate, drop your markup (not the inline css!) into it and you will 95% of the way there. It'll take about 2 minutes. You'll find most of the styling you would need already in place (courtesy of normalize) and you can then just add in some styles for the desktop view. TBH, if you want a decent experience on mobile you would be better going with a 2-col than a 3-col layout.