active questions tagged web-design - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T03:26:39Zhttp://stackoverflow.com/feeds/tag/web-designhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1849340/mvc-asp-net-design-templates1MVC / ASP.NET design templatesCody C2009-12-04T20:05:54Z2009-12-04T20:07:24Z
<p>Does anyone know of any good sites to download good design templates (master pages, css files) for MVC projects, or ASP.NET projects in general? I've used the asp.net mvc gallery but the options there are pretty limited. I'm willing to pay for some if they are good.</p>
http://stackoverflow.com/questions/49664/sources-of-inspiration-for-navigation-breadcrumbs7Sources of inspiration for navigation breadcrumbsCharles Roper2008-09-08T13:07:58Z2009-12-02T12:34:48Z
<p>I'm looking for sources of inspiration and/or design patterns for navigation 'breadcrumbs'. So far I have found the <a href="http://patterntap.com/tap/collection/breadcrumbs" rel="nofollow">breadcrumb collection on Pattern Tap</a>. Does anyone know of any other sources?</p>
http://stackoverflow.com/questions/176090/agile-web-graphic-design7Agile Web/Graphic DesignTamer Salama2008-10-06T20:36:08Z2009-11-30T19:09:16Z
<p>How do you incorporate web/graphic design tasks (template design, logo design, look-n-feel, etc...) into your agile process (XP/SCRUM)? How do you go about developer/designer pairing, designer stand-up meeting attendance?</p>
<p>In the larger sense, <strong><em>can</em></strong> an agile process be applied to web/graphic design?</p>
http://stackoverflow.com/questions/1814679/are-customizable-settings-important-in-web-apps1Are customizable settings important in web apps?Wayne M2009-11-29T04:46:21Z2009-11-30T13:30:29Z
<p>It seems a lot of web applications allow users to change the color scheme, either to custom values or from several predefined ones (blue/yellow, grays, red/yellow, etc). I'm wondering if this is an important issue to consider adding. I'm looking at some premade application templates to speed up the design of my application, and a lot of them make heavy use of CSS graphics which are hard to customize without having different graphics for each predefined color scheme.</p>
<p>So when focusing on creating an application that can be used by many different subscribers, is the added ability to customize the colors something to consider, or is the average user going to be okay with one look and feel when the colors might not match the colors of their business?</p>
http://stackoverflow.com/questions/1806734/best-way-to-indicate-draggability-in-a-web-app-or-in-general3Best way to indicate "draggability" in a web app (or in general)?Tyler2009-11-27T04:33:37Z2009-11-27T05:59:38Z
<p>Are there any visual cues that you know of that indicate an item's "draggability"?</p>
<p>The obvious ones:</p>
<ul>
<li>"<marque>Click here to drag!</marque>"</li>
<li>that icon thing <img src="http://www.iconfinder.net/ajax/download/png/?id=18824&s=16" alt="alt text"></li>
<li>and (which I plan to implement) the closed-hand-cursor-onmouseover <img src="http://www.iconfinder.net/ajax/download/png/?id=21687&s=16" alt="alt text"> <-- not this exact one</li>
</ul>
<p>Thanks for you help!</p>
<p><strong>Edit:</strong></p>
<p>Thank you all for your help. I definitely am in favor of the 'ribbed' surface look. I agree, that really affords dragging.</p>
<p>Again, thank you for your answers. </p>
http://stackoverflow.com/questions/1806731/css-and-fonts-advice2CSS and Fonts adviceKJai2009-11-27T04:32:55Z2009-11-27T04:59:03Z
<p>I am designing an article website and want some samples to look at to choose nice Fonts and CSS. Can you suggest some.</p>
<p>Here are some example of what I am seeking:</p>
<ul>
<li>Article Heading Font/Color</li>
<li>Article Body Font/ Color</li>
<li>Background Color ideas</li>
<li>Text Color</li>
<li>Layout</li>
</ul>
<p>It will be a two column layout</p>
<p>I thought since most of you are professionals, you can share some sites/resources out of your experience that will make the job easier for me.</p>
http://stackoverflow.com/questions/514083/why-is-good-ui-design-so-hard-for-some-developers79Why is good UI design so hard for some Developers?Chris Ballance2009-02-05T00:54:16Z2009-11-26T07:12:19Z
<p>Some of us just have a hard time with the softer aspects of UI design (<em>myself especially</em>). Are "back-end coders" doomed to only design business logic and data layers? Is there something we can do to <strong>retrain our brain</strong> to be more effective at designing pleasing and useful presentation layers?</p>
<p>Colleagues have recommended a few books me including <em>The Design of Sites</em>, <em>Don't make me think</em> and <em>Why Software sucks</em> , but I am wondering what others have done to remove their deficiencies in this area?</p>
http://stackoverflow.com/questions/1018078/testing-html-email-rendering4Testing HTML email renderingejunker2009-06-19T13:53:12Z2009-11-25T04:32:11Z
<p>Are there any good tools to easily test how HTML email will look across different email clients? I prefer something with instant feed back rather than a submit and wait service like <a href="http://litmusapp.com" rel="nofollow">http://litmusapp.com</a> Or at the very least a way to test the Outlook 2007/MS Word rendering?</p>
<p>I found this related question but it doesn't specifically address testing. <a href="http://stackoverflow.com/questions/127498/what-guidelines-for-html-email-design-are-there">What guidelines for HTML email design are there?</a></p>
http://stackoverflow.com/questions/1788454/web-form-design-multiple-pages-vs-single-page-with-ajax0Web form design - multiple pages vs single page with AJAXspooner2009-11-24T07:33:30Z2009-11-24T09:04:06Z
<p>We are designing a data capture process with many questions (using ASP.NET), which can repeat (e.g. enter all your vehicles). In rare cases this could be over 100 repeating groups. </p>
<p>Therefore I've stated that rather than having one huge form that we split the application into multiple forms, using logical points for page splits (e.g. personal details) in a wizard style.</p>
<p>However, there is debate within the team as to whether we should be using AJAX/Javascript to have a single form. Suggested approaches to this appear to be:</p>
<ol>
<li>Load in all the steps in one go, and just use Javascript to toggle.</li>
<li>Load in step 1 and load the other steps using AJAX.</li>
<li>Submit the form using AJAX and load the next step using AJAX.</li>
</ol>
<p>Option 1 to me defeats the entire point, as you'd end up loading a massive HTML tree - some of the pages can be large. This would be more acceptable if there was a small number of steps with very few questions on each.</p>
<p>Option 2 to me seems overly complex, plus if the user clicks the next button, can you guarantee the next page has loaded? Also, what happens if input from page 1 is required for page 2?</p>
<p>Option 3 seems doable, but I'd have though the response time of doing the AJAX processing would actually be slower than doing a standard form submit, as there would be more processing involved by the client browser. Also this approach is more complex than a standard form submit.</p>
<p>Do you think my approach is correct (standard form posts)? I've read that typically AJAX is used to enhance the functionality of a page, rather than trying to emulate multiple pages.</p>
http://stackoverflow.com/questions/138979/favourite-free-screen-design-tools1Favourite free screen design toolsbombadil2008-09-26T11:57:13Z2009-11-24T00:52:39Z
<p>I am looking for a free tool to quickly create a screen design in a workshop with a customer (for a web application). </p>
<p>The focus of the tool should be on a functional definition of screens and not on the design of them.</p>
<p>Do you have any suggestions for an appropriate tool?</p>
http://stackoverflow.com/questions/1780900/how-to-replace-literal-text-with-text-images-5how to replace literal-text with text-images ? [closed]panchicore2009-11-23T03:00:47Z2009-11-23T03:00:47Z
<p>Ive hear about a flash text technique, but this seem to be a png technique:</p>
<p><a href="http://www.mind-it.info/?p=49" rel="nofollow">http://www.mind-it.info/?p=49</a></p>
<p>thx :)</p>
http://stackoverflow.com/questions/1778150/web-design-outsourcing-site0Web design outsourcing site [closed]Jean2009-11-22T08:00:03Z2009-11-22T09:29:38Z
<p>I once saw a link to a site where you could post a (web)design request and people could send in offers - I am sure there are plenty of these but I think I found this one on a list of top rails implemented sites...</p>
<p>One could see all the examples/proposals people had posted and which one of them was accepted.</p>
<p>Anyone know what site this is - and got experience with it?</p>
http://stackoverflow.com/questions/1734263/how-to-make-design-for-websites-in-photoshop-according-to-wcag-2-0-color-contras0How to make design for websites in Photoshop, according to WCAG 2.0 color contrast guideline?Jitendra2009-11-14T13:43:02Z2009-11-20T22:26:25Z
<p>What points should I keep in mind while designing. How we can make good design while keeping in mind color related Accessibility guideline of <a href="http://www.w3.org/TR/WCAG/" rel="nofollow">WCAG 2.0</a>?</p>
http://stackoverflow.com/questions/1746588/web-data-grid-design-principles0Web data grid design principlesunknown (yahoo)2009-11-17T04:29:37Z2009-11-20T16:49:40Z
<p>I am looking for good reading references of styling data grids for web. Not necessarily the technical details (how to do it), but more guiding principles (what to do). Something like the Apple's Human Interface Guidelines, but for web and more specifically for data grids.</p>
http://stackoverflow.com/questions/1770193/ies-xhtml-compatibility0IE's XHTML Compatibilitykahrn2009-11-20T12:34:14Z2009-11-20T15:28:44Z
<p>Hi stackoverflow,</p>
<p>I'm having a rather heated debate into IE's XHTML Compatibility. The only thing is, I'm unsure if the guy is trolling. </p>
<p>Essentially he claims that IE has absolutely no XHTML compatibility, and that a document with a defined XHTML doctype means absolutely nothing when served as content type text/html, regardless of the browser used.</p>
<p>I do not believe this and sources say otherwise, but I am wrong?</p>
<p>Edit: Disregarding IE, does it still mean that when XHTML is defined in an HTML document it is NOT XHTML? Like the guy suggested? My current understanding is that XHTML is often contained within the HTML content type. This means that technically you could say that XHTML is merely HTML unless the correct content-type is used. But it's still XHTML syntax and so it a little confusing.</p>
<p>You can find the thread in question over at <a href="http://forums.digitalpoint.com/showthread.php?t=1579316" rel="nofollow">digitalpoint forums</a>.</p>
http://stackoverflow.com/questions/1770335/accessing-other-css-divisions-from-one-division0Accessing other CSS divisions from one divisionniting2009-11-20T13:08:28Z2009-11-20T14:01:02Z
<p>I have got a CSS division called home which has got certain attributes with an action for hover for the anchor tags inside the home division like this:</p>
<pre><code>#home a:hover
{
background-image:url(images/template_03_1.png);
position:relative;
top:3.5em;
left:0.5em;
}
</code></pre>
<p>Now, what I want to do is access the 'home' id's attributes inside the block defined above so that I change the properties of the home division whenever some one hovers on an anchor tag inside the home division. I know this is very easily possible in JavaScript but is this possible using CSS only.</p>
<p>Thanks,
niting</p>
http://stackoverflow.com/questions/1768715/is-it-possible-to-make-one-site-for-all-type-of-screen-resolutions-mobile-to-pc0Is it possible to make one site for all type of screen resolutions mobile to PC?Jitendra2009-11-20T06:33:49Z2009-11-20T08:38:55Z
<p>Can we make website scalable , stretchable like elastic rubber including text ,images, video, JavaScript and that site should be accessible from all devices which access to web?</p>
<p>I want to set max-width 980 px for site but minimum width can be everything and height should depend on content.</p>
http://stackoverflow.com/questions/73538/do-you-know-any-examples-of-a-pac-design-pattern3Do you know any examples of a PAC design pattern?mfer2008-09-16T15:25:21Z2009-11-20T00:46:10Z
<p>Can anyone point to any websites or web applications that are using the <a href="http://www.dossier-andreas.net/software_architecture/pac.html" rel="nofollow">Presentation-Abstraction-Control</a> design pattern rather than MVC? Desktop applications are easy to find like this (e.g.; GIMP) but I'm looking for something on the web.</p>
http://stackoverflow.com/questions/1764852/where-best-to-place-alert-notifications-on-a-website0Where best to place alert/notifications on a website?Rew2009-11-19T16:59:51Z2009-11-19T17:23:17Z
<p><strong>What do I mean by alert/notification?</strong></p>
<p>Example is an instant-messaging application, on the event when a user/friend comes online, you receive an alert that they are online - this alert is what I'm talking about.</p>
<p><strong>How is this done on the desktop?</strong></p>
<p>On desktop applications pop-up alerts/notifications appear bottom-right corner on Windows and top-right on MacOS X (for me anyway).</p>
<p><strong>What makes sense for websites?</strong></p>
<p>Say you're designing an IM tool that is website-based (used within a browser). Would you replicate the alert behaviour found in operating systems like Windows, or would you do something different.</p>
<p>My thoughts are that users are most focused on the area top-left* when browsing websites, so does it make sense to display an alert bottom-right? But at the same time users are used to alert behaviour based on how their OS works, does this really matter though?</p>
<p><strong><em>Where would you place alerts on a webpage?</em></strong></p>
<blockquote>
<p>*For the majority of web users (ignoring right-to-left languages for
now).</p>
<p>Note: This isn't strictly a
programming question, and if I could
afford it, I would hire a professional
UI designer to figure this stuff out
:-)</p>
</blockquote>
http://stackoverflow.com/questions/1760960/for-all-web-designers-academic-learning-vs-self-taught-learning0For All Web Designers: Academic learning vs self taught learningjanoChen2009-11-19T04:53:18Z2009-11-19T11:37:12Z
<p>I'm quite curious about your experience learning html, css, php, js web standards etc.
Did you consider learning them in college or institutes or you think it's absolutely unnecessary (learning from StackOverFlow is way better?)?</p>
<p>I'm asking this because I'm taking some Web design courses at my university and the teacher still uses frames for layout and FrontPage and another apps that were used in the age of windows 95. Web design standards and methods change every day so I'm really questioning if it's useful to learn from teacher who can't get used to new software for web design or new technologies (for instance CSS3 or HTML5). Maybe I'm wrong what's your opinion?</p>
http://stackoverflow.com/questions/1759310/up2date-techinques-tools-to-create-proper-css-xhtml0Up2date techinques/tools to create proper CSS/XHTMLDavid2009-11-18T21:47:35Z2009-11-19T11:04:43Z
<p>I figured, that iam currently "trying" to style the HTML/CSS in the plain *.css textfiles... My problem is, that i need to create a complex WebApp and need to figure out the best way to start with this designstuff... Problem: I am a hacker, no designer ^^</p>
<p>so, my current plan would be:</p>
<ul>
<li><p>Buy a nice css-book ( as i am really lacking of knowledge here ), instead of try n error as iam doing at the moment</p></li>
<li><p>Use one of your suggested tools ( if there are any ) to create the design</p></li>
</ul>
<p>So, are there any "top-dog"-tools in the market? Unfortunately i could'nt get google to answer this question...</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/522856/what-are-good-resources-for-css-templates-or-templated-layout-sites33What are good resources for CSS templates or templated layout sites?Chris Ballance2009-02-07T01:06:48Z2009-11-18T02:20:36Z
<p>Does not have to be free, I'm just not a designer and loathe starting from scratch. Any suggestions would be appreciated.</p>
http://stackoverflow.com/questions/1741804/php-html-flash-website-design-tools-for-beginner0php html flash website design tools for beginnerLikeToCode2009-11-16T12:11:50Z2009-11-17T09:54:17Z
<p>I have 5 years of C#, Perl and SQL programming experience but I've just found a web designer and developer job. I dont know anything about it but need to design a website using PHP, flash and HTML, whatever it is. Can you give me pointers on where to start to learn it all ASAP and start designing the website? I downloaded WAMP and learned to configure it. Other then that I dont know what to do next. They gave me a few pictures to incorporate, but I dont know how :)</p>
http://stackoverflow.com/questions/1747211/is-selenium-ide-useful-for-xhtml-css-coder0Is Selenium IDE useful for XHTML CSS coder?Jitendra2009-11-17T07:41:04Z2009-11-17T08:26:25Z
<p>Is <a href="http://seleniumhq.org/projects/ide/" rel="nofollow">Selenium IDE</a> useful for XHTML CSS coder?</p>
http://stackoverflow.com/questions/1654093/what-is-difference-between-interaction-design-visual-design-web-design-ux-desi0What is difference between Interaction design, Visual Design, Web design, UX design, UI design, UI development? rajakvk2009-10-31T11:14:00Z2009-11-15T19:00:04Z
<p>What is difference between Interaction design, Visual Design, Web design, UX design, UI design, UI development? </p>
<p>BTB, link found below answered for UI Vs UX.</p>
<p><a href="http://stackoverflow.com/questions/1334496/difference-between-ui-and-ux">http://stackoverflow.com/questions/1334496/difference-between-ui-and-ux</a></p>
http://stackoverflow.com/questions/578146/best-examples-of-crud-web-form-design5Best examples of CRUD Web Form DesignKristen2009-02-23T15:56:02Z2009-11-13T19:50:31Z
<p>I am looking to revamp our CRUD web forms and would appreciate any examples of good UI design.</p>
<p>We have lots of database tables that have minimal editing needs by the user - Country Codes, Tax codes, Product prices, and so on - and these all currently use a simple format for CRUD, but it was designed by developers and looks very bland, and quite possibly could have far better usability, and certainly a better design.</p>
<p>Our process is:</p>
<p>Find screen - which also has an ADD NEW button. Enter values for any parameters relevant to search for and press FIND button. Matching records displayed in a grid with an EDIT link. The corresponding Edit form allows CLONE, DELETE and SAVE.</p>
<p>Where appropriate an Edit form may display Child Records.</p>
<p>For very complex records / relationships the Edit form is replaced by a Record Card, which displays everything including the kitchen sink! and appropriate records / sub records have EDIT links.</p>
<p>Its functional, but uninspiring.</p>
<p>On an 80:20 basis the code is all mechanically generated, so re-generating it for a new metaphor shouldn't be too hard.</p>
<p>I like a lot of the UI in the <a href="http://demo-admin.magentocommerce.com/index.php/admin/" rel="nofollow">Magento eCommerce Admin</a> pages, but I would be interested in any other examples you can recommend</p>
http://stackoverflow.com/questions/1724391/what-programs-languages-should-i-learn-for-a-career-in-web-programming-design2What programs/languages should I learn for a career in web programming/design? [closed]draice2009-11-12T18:34:27Z2009-11-12T21:58:26Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/319421/what-is-the-best-programming-language-for-web-development-and-why">What is the best programming language for web development and why?</a><br>
<a href="http://stackoverflow.com/questions/24279/functional-programming-and-non-functional-programming">Functional programming and non-functional programming</a> </p>
</blockquote>
<p>I'm thinking of going into web design/ web programming.</p>
<p>Any suggestions as to languages/ programs to learn?
Any advice for a career in this area?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1710520/which-multilingual-web-design-solution-is-fastest-for-the-user-if-this-is-indeed1Which multilingual web design solution is fastest for the user, if this is indeed an issue?Shawn2009-11-10T19:23:57Z2009-11-12T19:41:20Z
<p><strong>Context:</strong></p>
<p>I'm in the design phase of what I'm hoping will be a big website (lots of traffic, lots of users reading and writing to database).
I want to offer this website in the three languages I speak myself (English, French, and by the time I finish the website, I will hopefully have learned enough Spanish to offer that too)</p>
<p><strong>Dilemma:</strong></p>
<p>I'm wondering how I should go about offering these various languages (and perhaps more in the future).</p>
<p><strong>Criteria:</strong></p>
<p>Many methods exist for designing multi-language websites. I'm looking for the technique that will result in a <strong>faster browsing experience</strong> for the user.</p>
<p><strong>Choices:</strong></p>
<p>Currently, I can think of (and have read about) the following choices. They are sorted in order of preference up to now.</p>
<ol>
<li><p><strong>Store all language-specific strings
in a database</strong> and fetch the good one
depending on prefered-language
(members can choose which language
they prefer),
browser-default-language and which
language is selected during the
current session, in that order.</p>
<p><strong><em>Pros:</em></strong></p>
<ul>
<li>Most of the time, a single
test at the beggining of the session
confirms which language to use for
the remainder of the session (stored
in a SESSION variable). Otherwise, a
user logging in also fetches the
right language and keeps it until
he/she logs out (no further tests). So the testing part should be
pretty fast.</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>I'm afraid that accessing the
database all the time would be quite
time-consuming (longer page load for
the user), especially considering
that lots of users could also be
accessing the database at the same
time for the same reason (getting the website text in the correct language), but also
for posting comments and the such.</li>
<li>Strings which include variables
(e.g. "Hello " + user.name + ", how
are you?") are harder to
store because the variable (e.g.
user name) changes for each user.</li>
<li>A direct link to a portal for a specific language would be ugly (e.g. www.site.com?lang=es)</li>
</ul></li>
<li><p><strong>Store all language-specific strings
in a text file</strong> and fetch the good one
depending on prefered-language
(members can choose which language
they prefer),
browser-default-language and which
language is selected during the
current session, in that order.</p>
<p><strong><em>Pros:</em></strong></p>
<ul>
<li>Most of the time, a single
test at the beggining of the session
confirms which language to use for
the remainder of the session (stored
in a SESSION variable). Otherwise, a
user logging in also fetches the
right language and keeps it until
he/she logs out (no further tests). So the testing part should be
pretty fast.</li>
</ul>
<p><strong>Cons:</strong></p>
<ul>
<li>I'm afraid that accessing the
text file all the time would be quite
time-consuming (longer page load for
the user), especially considering
that lots of users could also be
accessing the file at the same
time for the same reason (getting the website text in the correct language).</li>
<li>Strings which include variables
(e.g. "Hello " + user.name + ", how
are you?") are harder to
store because the variable (e.g.
user name) changes for each user.</li>
<li>I don't think multiple users could access the text file concurrently, though I may be wrong. If that's the case though, every user loading a page would have to wait for his/her turn to access the text file.</li>
<li>Fetching the very last string of the text file could be pretty long...</li>
<li>A direct link to a portal for a specific language would be ugly (e.g. www.site.com?lang=es)</li>
</ul></li>
<li><p><strong>Creating multiple versions of the website</strong> in seperate folders, where each version is in a different language.</p>
<p><strong><em>Pros:</em></strong></p>
<ul>
<li>No extra-treatment is needed for handling languages, so no extra waiting time.</li>
</ul>
<p><strong><em>Cons:</em></strong></p>
<ul>
<li>Maintaining the website will be like going to school: painfull, long, makes you stupid after doing the same thing over and over again.</li>
<li>ugly url (e.g. www.site.com/es/ instead of www.site.com)</li>
</ul></li>
</ol>
<p><strong>Additionnaly</strong>, the coices above could be combined with one or more of the following techniques:</p>
<ol>
<li><p><strong>Caching</strong> certain frequently requested pages (in a singleton or static PHP function?). Certain sentences could also be cached for every language.</p>
<p><strong><em>Pros</em></strong></p>
<ul>
<li>Quicker access for frequently-requested pages.</li>
<li>Which pages need caching can be determined dynamically, with time.</li>
</ul>
<p><strong><em>Cons</em></strong></p>
<ul>
<li>I'm not sure about this one, but would this end up bloating the server's RAM?</li>
</ul></li>
<li><p><strong>Rewritting the url</strong> could be used for many things.</p>
<ul>
<li>A user looking for direct access to one language could do so using www.site.com/fr/somefile and would be redirected to www.site.com/somefile, but with the language selected beign stored in a session variable.</li>
</ul>
<p><strong><em>Pros</em></strong></p>
<ul>
<li>Search engines like this because they have two different pages to show for two different languages</li>
</ul>
<p><strong><em>Cons</em></strong></p>
<ul>
<li>Bookmarking a page doesn't mean you'll en up with the right language when you come back, unless I put the language information in the url (www.site.com/somefile?lang=fr)</li>
</ul></li>
</ol>
<p><strong>A little more info</strong></p>
<p>I usually user the following technologies to make a website:</p>
<ul>
<li>PHP</li>
<li>SQL</li>
<li>XHTML</li>
<li>CSS</li>
<li>Javascript (and AJAX)</li>
</ul>
<p>This being said, if a solution requires that I learn a new language or something, I'm very open to doing so. I have no deadline for this project and I do intend to learn a lot from doing it!</p>
<p><strong>Conclusion:</strong></p>
<p>What I'm looking for is a method that allows me to offer multiple languages while not increasing page load time and not going crazy when trying to maintain the website. If you guys/gals have other ideas I should consider, I will try adding them to my list. Another possibility is that I'm overdoing this. Maybe I won't gain enough time with these methods for this all to be worth it, I just don't know how to verify if I need to worry about this or not.. so if you have any ideas for that, it would also help me.</p>
http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers18What is the easiest or fastest way to make CSS render the same in all browsersnicudotro2008-09-17T16:13:01Z2009-11-11T14:26:38Z
<p>Making a web page display correctly im all major browsers today is a very time consuming task.</p>
<p>Is there a easy way to make a CSS style that looks identical in every browser?
Or at least do you have some tips to make this work easier?</p>
http://stackoverflow.com/questions/1695054/is-it-okay-to-start-the-layout-of-a-website-with-a-photoshop-mockup6Is it okay to start the layout of a website with a photoshop mockup?demian2009-11-08T01:34:53Z2009-11-10T03:23:59Z
<p>This is a best-practice topic.</p>
<p>I saw it as a prefer method for some web developers. Instead of doing the CSS layout from scratch, they start a photoshop mockup first and then decode it into CSS.</p>
<p>What do you think about this approach? </p>
<p>Best to all,</p>