Skip to main content

Home/ CSS Evangelist/ Group items tagged of

Rss Feed Group items tagged

my mashable

When You Love WordPress Very Much, You Tattoo It On Your Arm - 0 views

  •  
    This is nice, in a slightly creepy, and yet delightfully geeky kind of way: a fellow named Ed Morita decided to tattoo a WordPress logo on his forearm. It's not just a plain, boring logo type of tattoo, there's all sorts of things happening here: skin is peeled off, wires and circuits are shown, and there's a nice big "W" as the centerpiece.
my mashable

Should Twitter Verify Celebrity Accounts? - 0 views

  •  
    The Dalai Lama joined Twitter this weekend, or so it seemed. At least, the Office of His Holiness The Dalai Lama was apparently making use of the messaging service under the username @ohhdl. Or was it?The account was promoting the official Dalai Lama website, and responding respectfully to inquiries. The story spread rapidly on blogs and - of course - on Twitter. At its peak, the account surpassed 16,000 followers.
Frederik Van Zande

Hackszine.com: Easiest cross-browser CSS min-height - 0 views

  •  
    Enforcing a minimum height for block elements in HTML is one of those few CSS tricks that you can't live without. There are still enough folks using IE6, unfortunately, and it doesn't support the min-height or min-width CSS parameters. This has caused the invention of a number of different hacks and browser-conditional style sheets to get the desired effect.
Scott Hendrickson

A List Apart: Articles: Frameworks for Designers - 0 views

  • How should a CSS framework be built? There are several possible ways to go about building a framework, but the most common and arguably the most useful is to abstract your common CSS into individual stylesheets that each cover a particular part of the whole. For example, you may have a stylesheet that sets up the typography and another that handles the mass reset. The beauty of the approach is the ability to selectively include only the styles that you need. You may end up with six or seven different stylesheets in your framework, but if a particular project doesn’t need one or two of them, they don’t have to be included. The framework we created in our office has five stylesheets: reset.css—handles the mass reset. type.css—handles the typography. grid.css—handles the layout grid. widgets.css—handles widgets like tabs, drop-down menus, and “read more” buttons. base.css—includes all the other stylesheets, so that we only need to call base.css from our (X)HTML documents to use the entire framework.
  • A word of caution This method works quite well, but there is a valid concern to be raised: it adds to the number of HTTP connections needed to render each page. On large, high-traffic sites, adding five more HTTP connections to every page view may result in angry system administrators. Two possible solutions to this are: Include everything in a single file, rather than breaking it into modules. The problem here is that you lose the ability to include only certain parts of the framework, and you also make maintenance more difficult. Have a server-side process that dynamically flattens the individual files into a single response. I’ve not seen this done, but it could be very efficient if done well. Using my example framework above, this dynamic process could occur when base.css is requested, but not when type.css, grids.css, etc. are. This way, the individual components are still available, but the entire framework is available in a flattened version, as well.
Frederik Van Zande

Introduction to CSS3 - Part 4: User Interface | Design Shack - 0 views

  •  
    This tutorial will be taking a look at some of the new ways you can manipulate user interface features in CSS3. But what do we mean by "user interface"? CSS3 brings some great new properties relating to resizing elements, cursors, outlining, box layout and more. We're focusing on three of the most significant user interface enhancements in this tutorial. The examples shown below can be seen at our CSS3 examples page. Many, however, can only be appreciated in the latest builds of various browsers:
Perry Branch

Actual Browser Sizes (final) - Baekdal.com - 0 views

  • in order to support 95% of your visitors, you need to design for a maximum size of 776x424px
  •  
    The final section "What size do I need to support?" has the findings summary, but the entire article is a very worthwhile read.
  •  
    This is a creative example of quantitative user research. According to the findings from this article the "above the fold" size that will apply to the most people browsing is 776px wide by 424px high. This takes into account the browser chrome and surfing w/o being maximized. I think this study should be performed regularly, every couple of years perhaps to follow display size changes.
my mashable

CaptionTube : Create Captions for Your YouTube Videos - 0 views

  •  
    Since the launch of the captions features for YouTube videos in last august, YouTube allows user add captions to one of your videos by uploading a closed caption file using the "Captions and Subtitles" menu on the editing page. This feature is used for people using other languages and even who are deaf or hard of hearing.
my mashable

"AwesomeBar" a Real Awesome About Firefox 3 - 0 views

  •  
    It's simple with the new "AwesomeBar" this is a completely revamped URL bar in firefox 3. it lets you use the URL field of your browser to do a keyword search of your history and bookmarks. No longer do you have to know the domain of the page you're looking for - the AwesomeBar will match what you're typing (even multiple words!) against the URLs, page titles, and tags in your bookmarks and history, returning results sorted by "frecency" (an algorithm combining frequency + recency).
my mashable

StumbleUpon Finally Breaks Free From eBay - 0 views

  •  
    Now you can Stumble outside of the shadow of the mega-corporate overlords at eBay - two years after Stumble founders Garrett Camp and Geoff Smith cashed out and handed their baby over to the ecommerce giant, they've come back with a team of investors and bought StumbleUpon back from eBay. It's pretty exciting.
Gary Edwards

The CSS Box Model | Chris Coyier CSS Tricks - 0 views

  •  
    Chris Coyier discusses the basics of the CSS Box Model: "every element in web design is a rectangular box. This was my ah-ha moment that helped me really start to understand CSS-based web design and accomplish the layouts I wanted to accomplish. We've talked about the positioning of these boxes a bit, and about their behavior." "What we haven't talked about much is the box itself. How is the size of the box calculated exactly? "
yc c

Conditional-CSS - 3 views

  •  
    Conditional-CSS allows you to write maintainable CSS with conditional logic to target specific CSS statements at both individual browsers and groups of browsers. * Target CSS to any web-browser * Streamline maintenance of your CSS files * Optimise your CSS * Work around those annoying little CSS bugs * Automatic expansion and inclusion of @import statements * It's free and open source!
yc c

CSS Sprite Generator | Project Fondue - 1 views

  •  
    batch process many images: allows you to send a zip file containing your images. It will returns you your images combined into a sprite, and even better, the CSS code that you'll just have to paste in your main css file. The CSS sprite generator takes a number of source images and combines them into a single "sprite" image and supplies CSS to map to each image within the sprite. The technique this tool employs is often used to improve the performance of a web site by reducing the number of HTTP requests that the client's browser needs to make.
yc c

HTML Purifier - Filter your HTML the standards-compliant way! - 1 views

  •  
    HTML Purifier is a standards-compliant HTML filter library written in PHP. HTML Purifier will not only remove all malicious code (better known as XSS) with a thoroughly audited, secure yet permissive whitelist, it will also make sure your documents are standards compliant, something only achievable with a comprehensive knowledge of W3C's specifications. Tired of using BBCode due to the current landscape of deficient or insecure HTML filters? Have a WYSIWYG editor but never been able to use it? Looking for high-quality, standards-compliant, open-source components for that application you're building? HTML Purifier is for you!
yc c

Complete CSS Guide The missing manual for CSS - Westciv Wiki - 7 views

shared by yc c on 14 Mar 10 - Cached
  •  
    This Guide is a reference to all of CSS 2.1, the W3C recommended standard for web page appearance, as of July 2008. We will also cover some aspects of CSS 3, currently a work in progress.
Hussain M Elius

jQuery Masonry - 7 views

  •  
    Masonry is a layout plugin for jQuery. Think of it as the flip side of CSS floats. Whereas floating arranges elements horizontally then vertically, Masonry arranges elements vertically then horizontally according to a grid. The result minimizes vertical gaps between elements of varying height, just like a mason fitting stones in a wall.
Andrea Micheloni

Definitive List of CSS Frameworks - Pick Your Style | W3Avenue - 6 views

  •  
    A CSS Framework is meant to provide ready-made solutions for various tasks that we perform on regular basis. In simple terms an ideal CSS framework will provide you with a default style sheet which you should be able to use as a starting point for most of your web design projects. W3Avenue has prepared a comprehensive list of CSS frameworks for your reference.
Meet John

likes on facebook - socialmediapenguin - 0 views

  •  
    SocialMediaPenguin.com has an experienced team that will work with you every step of the way to help you reach your business goals.We are here to make sure that the number of fans on your page increase significantly in just a matter of days
« First ‹ Previous 81 - 100 of 569 Next › Last »
Showing 20 items per page