1
vote
1answer
17 views

Mixin, @extend or (silent) class?

I am struggling with the basic concepts of SASS. I have a page that has multiple section, all of them are sharing properties like width, font-size etc. I would like to optimize my code and do one of ...
2
votes
3answers
272 views

Tidying and optimising code

I have the following code in jsfiddle. I have been told this this code is messy and not optimised. My question is, what about this is messy and unoptimised and how can it be tidied up and optimised ...
5
votes
2answers
147 views

Review for CSS layout code

I want to get my first CSS layout reviewed. First of all, the related HTML code is as follows - <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> ...
-1
votes
1answer
62 views

Optimizations Help [closed]

How can we improve our Yslow performance grade C to A or B. Looking for some helpful tips on improving the code on our website at www.wirenine.com - any tips to help improve page load times would be ...
3
votes
1answer
131 views

How to improve this JavaScript implementation of a TODO manager?

I was asked to create a TODO manager using JavaScript and CSS. I did not get a good review on the code nor specific comments on how to improve it. My implementation: <html> <head> ...
8
votes
2answers
227 views

CSS Optimization? How can I clean my code

My CSS feels dirty and I have no idea how to improve it. Suggestions are greatly appreciated! html, body { border:0; margin:0; padding:0; } body { font: normal 12px helvetica,sans-serif; } .header ...
4
votes
1answer
184 views

Is this code efficient?

I was wondering if this was a decent way of handling this function. Please take a look. // Use Less Mixins from Theme Options to adjust Stylesheets before Parsing Less to CSS add_filter( 'less_vars', ...
3
votes
1answer
245 views

Can my code be optimized more?

Preview: http://sparksonrails.pennfolio.com/ Jquery: function introIconFirst() { $('h2.ribbon').css( { 'marginTop': '+30px', 'opacity': '0' }).animate( { ...
3
votes
1answer
782 views

jquery/css/html sliding panels - Please review

Is there a better way to to do what I'm doing? If not just a general review of how I did it and the usability of it (how it works and function not artistically how it looks). Working jsfiddle. ...
1
vote
1answer
135 views

Optimizing my CSS selector library

I've made a selector library at https://github.com/minitech/Sprint.js and it appears to be much slower than jQuery on the ID selectors #test and #test2, and on the selector *. Can anyone point out ...
1
vote
3answers
151 views

could someone please review my code. it seems too convoluted. I am just starting to learn to go from blog to hosting

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> ...
2
votes
1answer
425 views

Possibly optimize my Jquery code?

I am creating a tab plugin. I want to know if there is a better way of doing this or if what I have is good. It works just fine, but there may be some shortcuts or a more optimized way of ...