Skip to main content

Home/ CSS Evangelist/ Group items tagged useful

Rss Feed Group items tagged

Vernon Fowler

Web Designer Notebook » How to use Modernizr - 0 views

  • Modernizr doesn’t actually magically enable these properties for browsers that don’t support them. It just tells the page whether that feature is supported on the browser the visitor is using or not.
  • To install Modernizr, download the file from this page. Then, on your site’s head tag, add a link to the file. For example: ?1<script src="js/modernizr-1.0.min.js"></script> The second step is to include on your html tag a class of “no-js”: ?1<html class="no-js"> Why add this tag? Because that will be the default state of the page. If JavaScript (js) isn’t on, then Modernizr won’t work at all (and probably other features of your site won’t work either…), so it’s good that we have a fallback for that case. If JavaScript is indeed enabled, once that page is loaded on the browser, that class will be replaced dynamically and it may look something like this: ?1<html class="js canvas canvastext geolocation rgba hsla no-multiplebgs borderimage borderradius boxshadow opacity no-cssanimations csscolumns no-cssgradients no-cssreflections csstransforms no-csstransforms3d no-csstransitions  video audio cufon-active fontface cufon-ready">
  •  
    "There is a tool that came to make our lives as progressive web designers a bit easier: Modernizr. In this short tutorial, learn how to apply this handy script to maximum effect on your sites."
tech vedic

How to apply the "Shrink to Fit" option in Microsoft Word 2010? - 0 views

  •  
    Sometimes a document created in MS Office Word can be a bit longer than you actually required. In that situation, make use of the "Shrink to Fit" option to reduce the length of your document by considerably shrinking the Font size.
a2zwebhelp

Breadcrumbs - Pagination using Bootstrap CSS - 0 views

  •  
    Bootstrap made it easy to define breadcrumb navigation. Just use the class "breadcrumb" and your breadcrumb navigation will be created.
tech vedic

How to Back Up Your Computer Data? - 0 views

  •  
    In case, your computer crashes then you can lose your most important data like photos, professional documents, etc. Thus, taking back up of your computer data is very useful.
thompsonmarry

Free Web Templates To Create A Website - 0 views

  •  
    CSS3Mania is the best site that offers Joomla templates for free. Within the template gallery of the site, you will find the extensively used and most suitable template selections for your website. Additionally, this website provides the templates for all versions of Joomla that can assist you in selecting a suitable template for your newly converted website.
kie guy

20 Useful CSS Tips For Beginners | How-To - 0 views

  •  
    it's always good to start with the fundamentals to gain a stronger foundation. Let's take a look at some CSS Tips we thought might be useful for beginners.
Jungle Jar

8 Free And Useful CSS Tools For Your Development Toolkit - 0 views

  •  
    This is a nice collection I've put together of both online CSS web applications and desktop applications to assist the web developer with his/her project. Both the CSS veterans and beginners should find these tools useful and at least worth a bookmark or quick download.
yc c

Font Tester - Online Font Comparison Tool - Preview Fonts - Compare Screen Type - 0 views

shared by yc c on 09 Mar 09 - Cached
  •  
    Font Tester is a free online font comparison tool. It allows you to easily preview and compare different fonts side by side with various CSS font styles applied to them. It is very useful for web developers who are looking for just the right font/style/color to use in their pages. To use it all you have to do is simply enter the text you would like to preview, modify the various CSS properties until you find a style you like, and then click on the Get CSS Code button to generate all the necassary CSS code to reproduce those styles in your webpage.
yc c

CSS Optimization: Make Your Sites Load Faster for Free by Blogging Pro - 0 views

  • While a lot of people are out to optimize their sites/blogs, most everyone seems to skip over CSS. I have been spending some time looking at CSS Optimization tools today. I wanted something free, online, and easy to use. And of course, something that worked. There are actually quite a few websites that fit the bill, and some of them are easier to use, produce more friendly code, and others are a bit harder to use, but can produce amazing results.
  •  
    oh,, that would be hard to find the differences between before and after optimizing..
anonymous

Permanent Link to Extremely efficient image rollovers using CSS sprites and NO Javascript - 0 views

  • Extremely efficient image rollovers using CSS sprites and NO Javascript
anonymous

Emma Alvarez Site: Most Useful 50 CSS Tips And Tools For Webmasters - 0 views

  • Most Useful 50 CSS Tips And Tools For Webmasters
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.
Perry Branch

A List Apart: Articles: Understanding Web Design - 0 views

  • Architecture (the kind that uses steel and glass and stone) is also an apt comparison—or at least, more apt than poster design. The architect creates planes and grids that facilitate the dynamic behavior of people. Having designed, the architect relinquishes control. Over time, the people who use the building bring out and add to the meaning of the architect’s design.
  • Web design is the creation of digital environments that facilitate and encourage human activity; reflect or adapt to individual voices and content; and change gracefully over time while always retaining their identity.
  • Great web designs are like great buildings. All office buildings, however distinctive, have lobbies and bathrooms and staircases. Websites, too, share commonalities.
  • ...1 more annotation...
  • The experienced web designer, like the talented newspaper art director, accepts that many projects she works on will have headers and columns and footers. Her job is not to whine about emerging commonalities but to use them to create pages that are distinctive, natural, brand-appropriate, subtly memorable, and quietly but unmistakably engaging.
  •  
    A good discussion of Web Design in the context of traditional design.
anonymous

Learn how to apply shadow automatically to an image using CSS - Alex Allied - 0 views

  • Learn how to apply shadow automatically to an image using CSS
  •  
    Learn how to drop a shadow to images css
Wanda Terral

Drawter.com - DrawAble Markup Language - 3 views

shared by Wanda Terral on 30 Jan 10 - Cached
  •  
    Drawter is a tool written in JavaScript and based on jQuery library. It provides you the possibility to literally draw your website's code. It runs on every single web-browser which makes it really useful and helpful. Each tag is presented as a layer you have drawn. Currently Drawter is available in Pro version, which means that it is intended for webmasters use only - knowledge of HTML and CSS is required. Drawter is not a tool for laymen, for the time being, but the whole team behind the project is putting every effort to launch a new version called "Amateur". Soon you will be able to draw your websites without any knowledge of HTML or CSS. Launching 2010.
  •  
    Drawter is a tool written in JavaScript and based on jQuery library. It provides you the possibility to literally draw your website's code. It runs on every single web-browser which makes it really useful and helpful. Each tag is presented as a layer you have drawn.
Rajan Datta

Using the LESS CSS Preprocessor for Smarter Style Sheets - Smashing Magazine - 8 views

  •  
    The templates are useful. And the step wise description is good.
seth kutcher

The Resident Computer Repair Tech Expert - 1 views

The museum I run has been a family heritage for years. The computer system we have here has been running perfectly for our staff and visitor use. Our resident computer repair tech expert has left u...

computer repair tech

started by seth kutcher on 17 Aug 11 no follow-up yet
Ace Dee

Taking the Shortest Route to Small Business SEO - 1 views

My company wanted to take the shortest route to SEO for our small business. To achieve this goal, we sought the help of Oracle Digital for identifying the keywords that will link the website to our...

SEO Perth

started by Ace Dee on 28 Sep 11 no follow-up yet
« First ‹ Previous 61 - 80 of 375 Next › Last »
Showing 20 items per page