User Sam Murray-Sutton - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:44:11Z http://stackoverflow.com/feeds/user/2977 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1791352/are-there-good-ui-patterns-for-designing-search-forms-with-many-fields/1791652#1791652 0 Answer by Sam Murray-Sutton for Are there good UI patterns for designing search forms with many fields? Sam Murray-Sutton 2009-11-24T17:32:02Z 2009-11-24T17:32:02Z <p>I think google advanced search is a good starting point.</p> <p>You might want to bear in mind the following things:</p> <ol> <li><p>Make sure you are clear about the need for each field in the form. They may all be completely necessary, but if some are not, then they could be making the form unnecessarily complex.</p></li> <li><p>Try to group your questions into logical areas using fieldsets and separate them visually on the page. This should make it easier to process the form.</p></li> <li><p>You can try hiding areas of your form using javascript to make the initial view less confusing. Although this risks confusing users if the controls for showing those sections are poorly labeled.</p></li> <li><p>Make sure you try out your design on as many people as possible - ideally from the community who will use it.</p></li> </ol> <h2>Some resources to consider:</h2> <p>I realise there are some specific challenges in search form design, but the following resources ought to be of some help. </p> <ul> <li><p><a href="http://ui-patterns.com/search?cx=partner-pub-0930110543923823%3Am71icf-sqpt&amp;cof=FORID%3A10&amp;ie=UTF-8&amp;q=forms&amp;sa=Search&amp;siteurl=ui-patterns.com%2F&amp;siteurl=ui-patterns.com%2F#1097" rel="nofollow">Forms on UI patterns</a></p></li> <li><p><a href="http://wufoo.com/gallery/templates/" rel="nofollow">Wufoo</a> - form designs for many different purposes, but there may be something of use to you there.</p></li> <li><p>Luke Wroblewski's book <a href="http://www.lukew.com/resources/web%5Fform%5Fdesign.asp" rel="nofollow">Web Form Design</a> is a great starting point if you're trying to develop your knowledge of how to design and layout forms. If you haven't time to get hold of the book, his website also has some helpful pointers. </p></li> </ul> http://stackoverflow.com/questions/6611/ie6-to-support-or-not-to-support/53773#53773 0 Answer by Sam Murray-Sutton for IE6: To support or not to support. Sam Murray-Sutton 2008-09-10T10:55:53Z 2009-11-06T10:40:33Z <p>The answer is, it varies depending on your situation.</p> <p>Check your logs, analytics etc, see what percentage comes from what user agent. From that you should be able to work out when it's worth supporting a browser or not.</p> <p><strong>Update</strong> - I wrote a blog post illustrating <a href="http://www.setfiremedia.com/blog/using-analytics-to-shape-your-browser-support-policy" rel="nofollow">how I use analytics to shape our browser support policy</a></p> <p><strong>For example</strong>, My employer has several websites, our own promotional site and then some ecommerce sites. </p> <p>If you check google analytics, our promotional site receives a clear majority of visitors from Firefox, the majority of which are Firefox 3. The rest is mainly IE7.</p> <p>On our busiest ecommerce site, we get the most visitors from IE7, then IE6, then FF. Interestingly, on the ecommerce site we get more visits from IE6 than all versions of FF combined.</p> <p>So there will never be a day when we can all turn around together and say let's not support IE6. You will have to work out when is best for you.</p> http://stackoverflow.com/questions/1188099/what-is-the-best-way-to-contextualise-a-large-number-of-css-style-definitions/1191168#1191168 0 Answer by Sam Murray-Sutton for What is the best way to contextualise a large number of Css style definitions? Sam Murray-Sutton 2009-07-27T23:19:08Z 2009-07-27T23:19:08Z <p>In this instance, I think your only real option is to use the #MainWidgetContainer id in all your selectors. Anything more generic than that risks clashing with the host stylesheets or won't be picked up by your styles. As mentioned above, you can use LESS, or <a href="http://haml.hamptoncatlin.com/" rel="nofollow" title="SASS">SASS</a> to reduce the tedium of writing in this way, but your styles still have to use that selector.</p> http://stackoverflow.com/questions/1118255/cucumber-automatic-step-file-creation/1170872#1170872 0 Answer by Sam Murray-Sutton for Cucumber: Automatic step file creation? Sam Murray-Sutton 2009-07-23T10:25:11Z 2009-07-23T10:25:11Z <p>There is a possibility this kind of feature could be useful, but as Kevin says, it doesn't exist at present. But it could also get quite messy, quite quickly. </p> <p>Maybe you already do this, but there's nothing stopping you cut and pasting the output direct into your text editor, or even piping the output direct to your text editor if you're so inclined. Then at least you're getting pretty much most of the way there, bar creating the file and naming.</p> http://stackoverflow.com/questions/203069/what-is-the-best-css-framework-and-are-they-worth-the-effort/771854#771854 1 Answer by Sam Murray-Sutton for What is the best CSS Framework and are they worth the effort? Sam Murray-Sutton 2009-04-21T09:45:08Z 2009-04-21T09:45:08Z <p><strong>Why use css 'frameworks'?</strong></p> <ul> <li><p>If you are pressured for time.</p></li> <li><p>If you do not know css, and don't know someone who can write it for you.</p></li> <li><p>If you are not overly precious about standards etc.</p></li> </ul> <p>I know programmers who have been really happy to use blueprint or 960, as it allows them to put together a layout on their own, without turning to a front-end developer. This is ideal for personal projects, or startups with limited resources.</p> <p>If you have decent knowledge of CSS already, then presumably you have a decent library of stock layouts already, so you clearly won't need a framework.</p> <p>However, if you're a beginner and just need to get something up and running, then you might turn to a framework, as it makes basic layout much simpler, and tackling browser compatibility also.</p> <p>Having said all that, many frameworks out of the box do make use of some horrible class names etc. I know of some websites that have taken a framework as a starting point and then customised it with their own class and id tags. But clearly there's a bit of work involved in that rewrite too. Using something like Compass, as mentioned above, does help to get around that.</p> <p>So, CSS frameworks - they can save you time, at the cost of semantics. They might also hurt your knowledge of CSS, but that is more up to how much you invest in learning the subject in general. Whether you make use of them is up to you.</p> http://stackoverflow.com/questions/656260/print-designers-moving-to-web-what-do-they-need-to-know/656393#656393 4 Answer by Sam Murray-Sutton for Print designers moving to web ... what do they need to know? Sam Murray-Sutton 2009-03-17T23:12:45Z 2009-03-18T17:54:54Z <p>Some broad points:</p> <p><strong>1. Print is static, the web is interactive.</strong></p> <p>The essence of a print project is a fixed point in time, an idea captured on paper or some other substrate. Web projects are moving, changing experiences that represent both the ideas of their creators and their users. </p> <p><strong>2. Everything is uncertain.</strong></p> <p>You mention typography in your answer, it's probably worth broadening that to cover all aspects of appearance. The variety of operating systems and hardware available mean that its hard to determine how all your audience will experience your final design. Whilst some things must be compatible across all browsers, sometimes it is not worth the time and effort needed to make something pixel perfect in all systems.</p> <p><strong>3. Learn about programming.</strong></p> <p>Unless you've an aptitude for it, you don't need to learn how to program for the web. But it would still be a big help to gain some familiarity with web programming, as if you can't code, you'll need to work closely with someone who can and you need to be able to communicate effectively with them.</p> <p><strong>4. Create working prototypes</strong></p> <p>When something is static, it can be designed using a static format. To design something interactive like a website, you should be making use of moving prototypes that represent the kind of behaviour the final design will have. You can use paper to do this, or more sophisticated mockups using xhtml, css and javascript, or a dedicated prototyping program.</p> http://stackoverflow.com/questions/571403/how-to-avoid-random-ui/571585#571585 2 Answer by Sam Murray-Sutton for How to avoid random UI? Sam Murray-Sutton 2009-02-20T23:02:15Z 2009-02-25T16:11:16Z <p>Some basic rules for you.</p> <ol> <li><p>Try to make effective use of whitespace. Don't cram everything together in an effort to get as much stuff on screen as possible. This will make grouped controls more clear and text more legible.</p></li> <li><p>Basic typography. Limit your use of fonts to 1 or 2. Don't use bold too much or it loses its emphasis.</p></li> <li><p>The same goes for colours. Don't use too many, the fewer the better most of the time.</p></li> <li><p>Don't just use icons to save space. Tiny icons with no explanation are useless.</p></li> <li><p>Copy. Not wholesale of course, but if you are not well-versed in UI design yourself, it makes sense to take elements of interfaces you know work and apply them in your own designs.</p></li> <li><p>Be clear about the purpose of the interface. How does it fit within the broader application for example? And what are the specific objectives you are trying to satisfy with it?</p></li> <li><p>Get people to test it for you, early and often. I don't know what setup you are working with, or what kind of organisation you are in, but getting some kind of human feedback on your work will always be helpful, even if you lack the time and expertise to conduct proper usability evaluations.</p></li> </ol> http://stackoverflow.com/questions/567331/at-what-point-do-you-perform-front-end-optimization/569615#569615 0 Answer by Sam Murray-Sutton for At what point do you perform front-end optimization? Sam Murray-Sutton 2009-02-20T13:48:10Z 2009-02-20T13:48:10Z <p>I think this might be one where it's difficult to get a clear answer, as different projects will have different requirements, depending on how much work they are doing on the client side. </p> <p>Mine rule of thumb would be probably later rather than sooner. Only because a lot of the typical front-end optimisation techniques (at least the stuff I'm aware of) tend to be fairly easy to implement. I'm thinking of whitespace stripping and changing http headers and so forth here. So I would favour focusing on work that directly answers the problem your project is tackling; once that is being addressed in an effective way move onto stuff like optimising front-end response times. </p> http://stackoverflow.com/questions/503826/does-ie7-have-a-problem-with-some-css-attribute-selectors 0 Does IE7 have a problem with some CSS attribute selectors? Sam Murray-Sutton 2009-02-02T16:32:04Z 2009-02-03T12:51:17Z <p>I am trying to style some form labels by selecting them with their 'for' attribute. But nothing is being picked up when I preview it in IE7. I'm doing this because I'd like to style them differently to each other, without adding to the existing markup. </p> <p>So if my css looks like the following, I get nothing:</p> <pre><code>&lt;style&gt; label[for="foo"] { background: blue; padding: 1em } &lt;/style&gt; &lt;form&gt; &lt;label for="foo"/&gt;bar&lt;/label&gt; &lt;input name="foo" type="text"/&gt; &lt;/form&gt; </code></pre> <p>But if I change it to this, the styling works.</p> <pre><code>&lt;style&gt; label[fro="foo"] { background: blue; padding: 1em } &lt;/style&gt; &lt;form&gt; &lt;label fro="foo"/&gt;bar&lt;/label&gt; &lt;input name="foo" type="text"/&gt; &lt;/form&gt; </code></pre> <p>Have you seen this kind of problem before? Is there a problem with the way I'm writing the CSS, IE7, or something else? </p> http://stackoverflow.com/questions/405850/using-svn-with-textmate/492034#492034 0 Answer by Sam Murray-Sutton for Using svn with Textmate Sam Murray-Sutton 2009-01-29T15:24:00Z 2009-01-29T15:24:00Z <p>Although Project Plus is great for quick visual checks on file status, you will still probably need the SVN bundle for doing diffs and merges - which I have to say the existing SVN bundle handles pretty well.</p> <p>Try looking at the merge options; you can do a side by side comparison of diffs, choosing what you want to include in the merge from either file.</p> <p>What you can't do is do diffs on arbitrary files - however you can do this using the diff bundle, funnily enough. It's not something that I need to do as regularly, but it has come in handy a few times.</p> http://stackoverflow.com/questions/134393/can-you-add-html-tags-to-the-author-user-profile-text-field-on-wordpress 1 Can you add html tags to the author/user profile text field on wordpress? Sam Murray-Sutton 2008-09-25T16:36:21Z 2009-01-29T02:56:25Z <p>I have added author pages to my company blog recently. Although I've no trouble pulling through relevant fields to populate the page - e.g. Author Name, User-profile, etc, I would really like to be able to add a small amount of html to the user-profile. Currently the whole thing is just dumped onto the author profile page - you can <a href="http://www.setfiremedia.com/blog/author/samsutton" rel="nofollow">view my sample here</a>. </p> <p>Although we can add anchors, it seems to strip out other html tags. I presume this is some sort of security feature to prevent external users from adding malicious code. However, membership isn't open, and we could really do to be able to add a bit more structure to the text.</p> http://stackoverflow.com/questions/298607/css-best-practice-about-id-and-class/299172#299172 1 Answer by Sam Murray-Sutton for CSS Best Practice about ID and Class? Sam Murray-Sutton 2008-11-18T15:55:32Z 2008-12-23T17:17:59Z <p>IDs are for uniquely identifying elements, Classes are for identifying an element as being part of a class of elements.</p> <p>In practical terms, id attributes should only be used one per document, class attributes can be used on more than one element on a document.</p> <p>Check the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#h-7.5.2" rel="nofollow">W3C spec</a> and also the <a href="http://css-discuss.incutio.com/?page=ClassesVsIds" rel="nofollow">CSS-Discuss</a> page on this issue.</p> http://stackoverflow.com/questions/316837/semantic-representation-of-a-chart/317500#317500 1 Answer by Sam Murray-Sutton for Semantic representation of a chart. Sam Murray-Sutton 2008-11-25T14:22:46Z 2008-11-26T11:53:57Z <p>I seem to remember some useful posts on this subject. You might find that in the end a simple image is best from a cost-benefit point of view, but <a href="http://apples-to-oranges.com/blog/post/css-for-bar-graphs/?id=55" rel="nofollow">this article</a> will tell you all you could ever want to know about using html and css to draw bar graphs.</p> <p>By coincidence, after posting this I looked at <a href="http://everyblock.com/" rel="nofollow">everyblock.com</a> yesterday and noticed they have a particularly good implementation of graphs in html/css which would be worth looking at.</p> http://stackoverflow.com/questions/53881/what-is-your-preferred-site-for-code-snippets 3 What is your preferred site for code snippets Sam Murray-Sutton 2008-09-10T12:31:21Z 2008-11-12T21:09:30Z <p>Do you use any public websites for code-snippets? If so, can you let me know which ones you would recommend?</p> <p><strong>Clarification</strong></p> <p>I'm not looking for anything specific to a particular language, as suggested below - I work with a few different languages so I need something fairly general. I've just found [www.snippler.com][1] that seems like a good example of what I'm looking for - a public repository of useful, commonly created snippets. Any more suggestions?</p> http://stackoverflow.com/questions/265541/what-is-the-best-field-validation-plugin-for-prototype 0 What is the best field validation plugin for Prototype? Sam Murray-Sutton 2008-11-05T15:46:17Z 2008-11-07T11:44:07Z <p>Not wanting to re-invent the wheel or anything, I was wondering if there's a plugin out there a field or form validation plugin that works with Prototype that you can recommend from your own experience and why?</p> http://stackoverflow.com/questions/264924/can-you-find-a-solution-using-just-css-to-make-an-element-centred-when-it-appear 2 Can you find a solution using just css, to make an element centred when it appears on its own, and aligned to the right when it appears with another element? Sam Murray-Sutton 2008-11-05T11:53:52Z 2008-11-06T00:05:02Z <p><strong>The problem:</strong></p> <p>We have a page that ordinarily has two elements arranged side-by-side.</p> <pre><code>&lt;div id="container"&gt; &lt;div id="element1"&gt;content&lt;/div&gt;&lt;div id="element2"&gt;content&lt;/div&gt; &lt;/div&gt; </code></pre> <p>But in some conditions only element2 is on the page e.g.:</p> <pre><code>&lt;div id="container"&gt; &lt;div id="element2"&gt;content&lt;/div&gt; &lt;/div&gt; </code></pre> <p>Despite exploring a few angles for this, we can't seem to make it work. We're not averse to using JS, it just feels that a css based solution ought to be possible.</p> <p>Can you think of a way of using just css(and possibly extra markup if definitely necessary) to make element 2 center when it appears on its own?</p> http://stackoverflow.com/questions/264822/table-header-background-image-tiling-vertically/264854#264854 0 Answer by Sam Murray-Sutton for Table header background image tiling vertically Sam Murray-Sutton 2008-11-05T11:08:57Z 2008-11-05T11:08:57Z <p>First of all, I'm assuming you're using CSS to place this background image. You probably need to clarify that part of your answer. </p> <p>I don't believe there is a css function that you can use to make your background image stretch. As Mecki says, you can use background-repeat to tile the image horizontally, but that's not going to deal with the header expanding beyond the height of your original tile.</p> <p>The simplest way to deal with this would be to just make your background big enough to fit a couple of lines or more.</p> <p>So if you make the background say 40px tall or perhaps slightly larger, your not going to add a huge amount in terms of file size, but then you have a more flexible design.</p> <p>In general as far as layout and graphics go, it's always best to build in a bit of flexibility, to cope with browser inconsistencies and different user needs.</p> http://stackoverflow.com/questions/25450/abstraction-away-from-css/42081#42081 2 Answer by Sam Murray-Sutton for Abstraction away from CSS Sam Murray-Sutton 2008-09-03T16:36:40Z 2008-10-30T14:19:01Z <p>For CSS frameworks, you could consider <a href="http://developer.yahoo.com/yui/grids/" rel="nofollow" title="YUI Grids">YUI Grids</a>. It makes basic layout a lot quicker and simpler, although used in its raw form it does compromise on semantics.</p> http://stackoverflow.com/questions/43947/what-is-the-best-way-of-adding-in-regularly-used-blocks-of-code-when-marking-up-i 1 What is the best way of adding in regularly used blocks of code when marking up in TextMate? Sam Murray-Sutton 2008-09-04T15:03:33Z 2008-10-29T18:14:30Z <p>Caveat: I'm relatively new to coding as well as <a href="http://macromates.com/" rel="nofollow">TextMate</a>, so apologies if there is an obvious answer I'm missing here.</p> <p>I do a lot of HTML/CSS markup, there are certain patterns that I use a lot, for example, forms, navigation menus etc. What I would like is a way to store those patterns and insert them quickly when I need them. </p> <p>Is there a way to do this using TextMate?</p> http://stackoverflow.com/questions/225956/how-do-i-align-spans-or-divs-horizontally/226261#226261 2 Answer by Sam Murray-Sutton for How do I align spans or divs horizontally? Sam Murray-Sutton 2008-10-22T15:20:22Z 2008-10-22T15:20:22Z <h3>My answer:</h3> <pre><code>&lt;style&gt; #whatever div { display: inline margin: 0 1em 0 1em width: 30% } &lt;/style&gt; &lt;div id="whatever"&gt; &lt;div&gt;content&lt;/div&gt; &lt;div&gt;content&lt;/div&gt; &lt;div&gt;content&lt;/div&gt; &lt;/div&gt; </code></pre> <h3>Why?</h3> <p>Technically, a Span is an inline element, however it can have width, you just need to set their display property to block first. However, in this context, a div is probably more appropriate, as I'm guessing you want to fill these divs with content.</p> <p>One thing you definitely don't want to do is have <code>clear:both</code> set on the divs. Setting it like that will mean that the browser will not allow any elements to sit on the same line as them. The result, your elements will stack up.</p> <p>Note, the use of <code>display:inline</code>. This deals with the ie6 margin-doubling bug. You could tackle this in other ways if necessary, for example conditional stylesheets.</p> <p>I've added a wrapper (#whatever) as I'm guessing these won't be the only elements on page, so you'll almost certainly need to segregate them from the other page elements. </p> <p>Anyway, I hope that's helpful. </p> http://stackoverflow.com/questions/60436/what-is-the-benefit-of-using-only-openid-authentication-on-a-site/212141#212141 0 Answer by Sam Murray-Sutton for What is the benefit of using ONLY OpenId authentication on a site? Sam Murray-Sutton 2008-10-17T13:37:22Z 2008-10-17T13:37:22Z <p>I am in favour of OpenID, mainly from an ease of use perspective. I remain to be convinced about it's safety, but it has a lot of potential. There are lots of things that could be said on this, but I just wanted to respond to the following two points:</p> <blockquote> <p><strong>Adds a non-trivial amount of time to the signup</strong> </p> </blockquote> <p>Only the first time it's setup. Also, with companies like Yahoo providing support now, many people won't even have to bother setting up an OpenID if they don't want to. If you used Google or someone similar as your OpenID provider, would you see them as inherently insecure? And how often would you expect them to have downtime?</p> <blockquote> <p><strong>It is a Phisher's Dream</strong></p> </blockquote> <p>I do accept that this might be partly true. But is phishing not more of a social problem than a technological one? OpenID could make it easier, but that doesn't eliminate the fact that the real problem is the user. It's far more important to make users aware of how phishers operate than trying to safe guard them through technology. </p> http://stackoverflow.com/questions/211394/when-to-use-custom-html-tags/211687#211687 1 Answer by Sam Murray-Sutton for When to use custom html tags? Sam Murray-Sutton 2008-10-17T10:43:34Z 2008-10-17T10:43:34Z <p>I must confess I don't know a great deal about creating custom tags, but I did remember ALA published some useful articles on the subject - <a href="http://www.alistapart.com/articles/customdtds2/" rel="nofollow">customd2ds</a> is pretty good.</p> http://stackoverflow.com/questions/187279/strange-float-behaviour-in-ie7/187860#187860 0 Answer by Sam Murray-Sutton for Strange float behaviour in IE7 Sam Murray-Sutton 2008-10-09T15:37:17Z 2008-10-09T15:37:17Z <p>This is just a quick answer, so I hold my hands up if it doesn't quite work. I think Marko's solution will probably work if you just add min-width rather than width. If you are trying to cater for ie6 as well, you may need to use a hack, as min width is not supported by ie6 and it's descendants.</p> <p>So this should work with IE7 and other modern browers. Set the min-width to whatever is appropriate.</p> <pre><code>&lt;div style="float:left; min-width: 200px;"&gt; &lt;div style="background-color:blue; padding: 1px; height: 20px;"&gt; &lt;div style="float: left; background-color:green;"&gt;title&lt;/div&gt; &lt;div style="float: right; background-color:yellow;"&gt;toolbar&lt;/div&gt; &lt;/div&gt; &lt;div style="clear: both; background-color: red;"&gt;content&lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/182528/is-this-how-you-would-structure-your-css-stylesheet 1 Is this how you would structure your CSS stylesheet? Sam Murray-Sutton 2008-10-08T12:42:31Z 2008-10-09T08:26:43Z <p>Leaving aside the question of whether you should serve single or multiple stylesheets, assuming you're sending just one, what do you think of this as a basic structure?</p> <p>/* Structure */</p> <p>Any template layout stuff should be put into here, so header, footer, body etc.</p> <p>/* Structure End */</p> <p>/* Common Components*/</p> <p>Repeated elements, such as signup forms, lists, etc.</p> <p>/* Common Components End*/</p> <p>/* Specific Page 1 */</p> <p>Some pages might have specific styles, that would go here.</p> <p>/* Specific Page 1 End */</p> <p>/* Specific Page 2 */</p> <p>As above</p> <p>/* Specific Page 2 End */</p> <p>/* Specific Page etc */</p> <p>And so on.</p> <p>/* Specific Page etc End */</p> http://stackoverflow.com/questions/178025/where-can-i-get-materials-to-begin-learning-css/178082#178082 3 Answer by Sam Murray-Sutton for Where can I get materials to begin learning CSS? Sam Murray-Sutton 2008-10-07T11:44:21Z 2008-10-07T11:44:21Z <p>This question has a lot of good info on this area: <a href="http://stackoverflow.com/questions/2084/can-you-recommend-a-good-css-online-resource-or-book">http://stackoverflow.com/questions/2084/can-you-recommend-a-good-css-online-resource-or-book</a></p> http://stackoverflow.com/questions/13039/is-there-a-tool-that-can-display-a-svn-repository-visually-i-e-pretty-charts/175834#175834 1 Answer by Sam Murray-Sutton for Is there a tool that can display a SVN repository visually ( i.e. pretty charts )? Sam Murray-Sutton 2008-10-06T19:35:29Z 2008-10-06T19:35:29Z <p><a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> is a wiki and issue tracking tool, which happens to include an SVN browser. The <a href="http://trac-hacks.org/wiki/RevtreePlugin" rel="nofollow">RevtreePlugin</a>, for Trac will allow you to display your repo in a graphical form. Trac is still a very young application(latest version is 0.11.1), but we use it at work for our software development and it's proved very useful so far.</p> http://stackoverflow.com/questions/162607/how-should-a-non-designer-interview-a-web-designer/163271#163271 1 Answer by Sam Murray-Sutton for How Should a Non-Designer Interview a Web Designer? Sam Murray-Sutton 2008-10-02T16:16:11Z 2008-10-02T16:16:11Z <p>First of all, although you think you don't know good design, if you see enough portfolios, the good ones will probably still stand out to you. If you still don't trust your own judgement, get other people to look over them for you.</p> <p>Get them to talk you through their work. A good designer should be a good advocate for their work. You can also use the opportunity to assess their technical knowledge. They don't need to know how to program, but they must understand how their work will interface with underlying technologies.</p> <p>As others have already said here, another essential is to be able to appraise their work from a usability perspective, not merely an aesthetic one.</p> <p>Also, I wouldn't take on a designer who doesn't understand at least the rudiments of xhtml/css, unless you're willing to teach them. </p> <p>Finally - an alternative to setting tests is to take someone on a freelance basis to begin with, and find out for real how well they can work with you.</p> http://stackoverflow.com/questions/134393/can-you-add-html-tags-to-the-author-user-profile-text-field-on-wordpress/138698#138698 1 Answer by Sam Murray-Sutton for Can you add html tags to the author/user profile text field on wordpress? Sam Murray-Sutton 2008-09-26T10:53:29Z 2008-09-26T10:53:29Z <p>The simple answer is no. But like most things in Wordpress, there is a potential solution.</p> <p>After some further trawling of obscure sites, I found <a href="http://www.cimatti.it/blog/cimy-wordpress-plugins/cimy-user-extra-fields/" rel="nofollow">this solution</a>, but no idea how well it will work. When I get round to trying it, I will post up the results here, unless someone else who has already used it can advise, in which case I'll delete this answer.</p> http://stackoverflow.com/questions/120244/how-to-chain-pseudo-selectors-in-sass 1 How to chain pseudo selectors in SASS Sam Murray-Sutton 2008-09-23T10:34:08Z 2008-09-23T14:06:52Z <p>I'm trying to put together a selector in SASS that will operate on the visted, hovered state of a link, but I can't quite seem to get the markup right, can someone enlighten me? I was writing it like this:</p> <pre><code> &amp;:visited:hover attribute: foo </code></pre> http://stackoverflow.com/questions/119961/select-tags-size-attribute-through-css/120062#120062 0 Answer by Sam Murray-Sutton for Select tag's size attribute through css? Sam Murray-Sutton 2008-09-23T09:38:00Z 2008-09-23T09:38:00Z <p>In general you can't add attributes set within html via CSS. You can add to the html using the pseudo selectors :before and :after, but that's about it, plus they still aren't compatible across all browsers. If you really need to do this, I think you'd have to resort to Javascript.</p> http://stackoverflow.com/questions/817320/what-advantages-does-sass-provide-over-regular-css Comment by Sam Murray-Sutton on What advantages does Sass provide over regular CSS? Sam Murray-Sutton 2009-11-03T15:46:33Z 2009-11-03T15:46:33Z On top of that, SASS can convert .css to .sass files and vice versa, using a simple command-line tool, so exporting your files as normal css is easy enough. http://stackoverflow.com/questions/299942/regex-matching-html-tags-and-extracting-text/299951#299951 Comment by Sam Murray-Sutton on RegEx matching HTML tags and extracting text Sam Murray-Sutton 2009-10-13T09:40:35Z 2009-10-13T09:40:35Z I admit you made me laugh, but let's have an explanation, or a link to a good explanation of why you'd rather chew your leg off. I guess it's really obvious why to some programmers, but maybe not to the novice? http://stackoverflow.com/questions/200372/whats-the-best-way-to-implement-gmail-style-undo-in-rails/201895#201895 Comment by Sam Murray-Sutton on What's the best way to implement gmail style "undo" in Rails? Sam Murray-Sutton 2009-08-07T08:42:49Z 2009-08-07T08:42:49Z A brief review of the two makes it seem like Acts as soft deletable would be the better choice, both for the method used and the fact that it appears to be better maintained. http://stackoverflow.com/questions/1237813/the-best-way-to-clear-both Comment by Sam Murray-Sutton on The best way to "clear: both" Sam Murray-Sutton 2009-08-06T11:16:37Z 2009-08-06T11:16:37Z This is a dumb question to ask, but could the stuff you're laying out be considered tabular data? http://stackoverflow.com/questions/1209468/good-css-examples-for-tags Comment by Sam Murray-Sutton on Good css examples for tags Sam Murray-Sutton 2009-07-30T21:50:26Z 2009-07-30T21:50:26Z You should consider revising your question with some example references, and maybe a bit more detail about how you want them to look. http://stackoverflow.com/questions/1188099/what-is-the-best-way-to-contextualise-a-large-number-of-css-style-definitions/1188117#1188117 Comment by Sam Murray-Sutton on What is the best way to contextualise a large number of Css style definitions? Sam Murray-Sutton 2009-07-27T23:05:49Z 2009-07-27T23:05:49Z Although it is pretty good, LESS will not help you in this situation. It really just makes the process of writing css quicker. http://stackoverflow.com/questions/861008/xpath-partial-of-attribute-known/861839#861839 Comment by Sam Murray-Sutton on XPath partial of attribute known Sam Murray-Sutton 2009-07-03T10:55:09Z 2009-07-03T10:55:09Z Also helpful to me, thanks :) http://stackoverflow.com/questions/704930/html-form-within-mail-client Comment by Sam Murray-Sutton on html form within mail client Sam Murray-Sutton 2009-07-02T16:56:53Z 2009-07-02T16:56:53Z I have nothing to offer you but my sympathies. The joys of marketing. http://stackoverflow.com/questions/211383/which-method-of-clearfix-is-best/211467#211467 Comment by Sam Murray-Sutton on Which method of 'clearfix' is best? Sam Murray-Sutton 2009-04-21T09:48:07Z 2009-04-21T09:48:07Z Good point, I think I still think I'd go for clearfix than add clearing elements to the markup. http://stackoverflow.com/questions/203069/what-is-the-best-css-framework-and-are-they-worth-the-effort/203133#203133 Comment by Sam Murray-Sutton on What is the best CSS Framework and are they worth the effort? Sam Murray-Sutton 2009-04-21T09:31:53Z 2009-04-21T09:31:53Z Sass, Haml and Compass are different things. Haml and Sass generally come together, Haml allows you to write html with less markup, Sass allows you to write css with less code as well use constants. Compass is just a Sass interpretation of the popular css frameworks out there. http://stackoverflow.com/questions/120244/how-to-chain-pseudo-selectors-in-sass/120515#120515 Comment by Sam Murray-Sutton on How to chain pseudo selectors in SASS Sam Murray-Sutton 2009-03-05T13:47:05Z 2009-03-05T13:47:05Z I realise after coming back to this question after some time that it was indeed an indentation issue. This is sass after all :). Colon doesn't have to go before the attribute though, sass will accept either way of writing. I use the colon after as I find it easier to read. http://stackoverflow.com/questions/566267/need-a-little-css-advice Comment by Sam Murray-Sutton on Need a little CSS advice Sam Murray-Sutton 2009-02-24T19:29:52Z 2009-02-24T19:29:52Z one thing - which version of IE are you using? http://stackoverflow.com/questions/532906/misuse-of-the-css-class-attribute-or-valid-design-pattern/532936#532936 Comment by Sam Murray-Sutton on Misuse of the CSS class attribute, or valid design pattern? Sam Murray-Sutton 2009-02-10T17:32:35Z 2009-02-10T17:32:35Z Semantic is the ideal, although not always possible. I try to think in terms of meaning or function, from the users perspective. http://stackoverflow.com/questions/211383/which-method-of-clearfix-is-best/211467#211467 Comment by Sam Murray-Sutton on Which method of 'clearfix' is best? Sam Murray-Sutton 2009-02-09T11:55:54Z 2009-02-09T11:55:54Z This is great, but it does lead to a much bigger css file. Still, probably better than messy markup http://stackoverflow.com/questions/211383/which-method-of-clearfix-is-best/211415#211415 Comment by Sam Murray-Sutton on Which method of 'clearfix' is best? Sam Murray-Sutton 2009-02-09T11:55:16Z 2009-02-09T11:55:16Z I think the point is we're trying to avoid both extra markup and inline styles with this solution. It depends which compromise your happiest with I suppose