Skip to main content

Home/ Web Development, Design & Programming/ Group items matching "Lists" in title, tags, annotations or url

Group items matching
in title, tags, annotations or url

Sort By: Relevance | Date Filter: All | Bookmarks | Topics Simple Middle
Harikrishna Patel

Four Important Tips for eCommerce Website Designing - 1 views

  •  
    Have we ever tried to know pros and cons of eCommerceWebsite? Have we ever tried to find out what makes people successful in eBusiness? Here we have listed some points for it.
Harikrishna Patel

Mistakes to be Ignored while Word Press Development - 1 views

  •  
    There are some of the very basic issues that are sometimes ignored by expert WordPress Developers as well as clients. Here we have listed some tips that can help you to keep your promise.
Harikrishna Patel

Useful Tips to make Design Critiques Successful - 1 views

  •  
    For web designers, it is always important to stay updated with recent Web Design Trends. Here we listed some tips for successful design critiques.
Aman Khani

Here is the list of top 5 Domain Name Search tools in 2015 - 0 views

  •  
    This blog post tells you about the top 5 Domain Name Search Tools in 2015 those are fairly popular and are majorly used in 2015. Read and know why these tools are popular and why these are best.
sitessimply

Discounts code in e-commerce website - 0 views

  •  
    The e-commerce owners use this tactic to increase the sales and make the business, a brand. For promoting the e-commerce website and spreading words about it, the first thought that comes in mind is to offer a discount coupon via an e-commerce discount code setup for those who are in the contact list. The discount codes in e-commerce websites always work, but it is not just limited to set up the code for a coupon.
Harikrishna Patel

7 Must to Have Multipurpose Word Press Themes - 1 views

  •  
    WordPress is one of the well known platforms used for developing websites as well as blogs. Here we are listed some best Multipurpose Word Press Themes.
Harikrishna Patel

Smart Phone The Most Demandable Device Today - Softqube Technologies - 1 views

  •  
    Which countries are adopting technology quickly? Here we have discussed about Mobile App Development. Apart from the ones described, few other observations listed in this link.
Jochen Burkhard

A List Apart: Articles: Supersize that Background, Please! - 0 views

  •  
    With an advertising world keen to use every inch of a medium for brand or product experience, it is becoming increasingly popular to design websites with full-browser backgrounds. Using CSS, this can be achieved quite easily. Just drop a huge background image in a page with one line of code (Line wraps marked » -Ed.):
Brian R

Best Web Design Tools For Creating a Complete Website - 0 views

  • Web Design Tools are always handy to a web designer and coder, with tons of features, fantastic UI, these tools provide best results if used wisely. Every tool has its pros and cons, you have to choose which suits your needs, investment planning and the OS you are using.
  • Some of these are not cross platform and some are free, yes totally free design tools. But this list is not completed and can never be completed, without your input. With emerging trends of online apps some of the software are not needed to be installed on your computer. I hope you will like the collection for a start and I will be adding more and more web design tools which designer and developers use in day to day life. So stay connected and bookmark this post for future reference.
  • Photoshop : Adobe Photoshop is a very popular commercial graphics editor available for the Mac and Windows operating system. Created for professional photographers and designers, it is the ideal application for manipulating images and creating web graphics. Photoshop has all the necessary tools and options you need such as: Filters – which automatically adds effects to your image or a selected section of your image, extensibility and automation with Brushes, Actions and Scripting, and workflow enhancement features like Layer Comps and the Revert  option. Fireworks : Adobe® Fireworks® CS5 software enables you to create expressive, highly optimized graphics for the web or virtually any device — from smartphones to kiosks to embedded displays. Produce websites, user interfaces, and rich prototypes that are editable in both vector and bitmap modes.
Anton S.

Web designer heaven - 0 views

  •  
    "FONTS  /  STOCK PHOTOGRAPHY  /  CHEAT SHEET  /  COLOR TOOLS  /  VECTOR CLIP ART  /  LOGOTYPES  /  PATTERNS  /  ICONS  /  TEXTURES  /  TEXT GENERATORS  /  CSS  / TUTORIALS  /  PHOTOSHOP BRUSHES  /  INSPIRATION  /  SOUNDS  /  OTHER USEFUL LINKS"
  •  
    Like this http://cheaptravelbooker.com Like this http://cheaptravelbooker.com like this http://killdo.de.gg travel,hotel,fun,hotel new,new offer,hotel best,best hotel,hotel travel,seo,backlinks,edu,gov,ads,indexing,bookmark,killgoggle,gogglesuck,goggle bookmark,kill goggle,yahoo,bing,indexing,quality links,linkwell,traffic boster,index best
Jackie Fields

IT Management Conference & Expo in NYC Oct.14-16 - 0 views

  •  
    http://www.manageit.me ---The greatest minds in IT in 50+ presentations : top industry-leaders: Creator of MySQL Michael "Monty" Widenius, Internet Celebrity Gary Vaynerchuk, Co-Creator of PHP & Zend CTO Zeev Suraski, Richard Sheridan, CEO of Menlo Innovations & Pioneer of Agile eXtreme Programmi...
Thomas Sullivan

Programmer Jobs - USA Positions Available, Statistics, Articles, and More - 0 views

  •  
    If you are unemployed with experience in the computer programming field, this site with the title "Programmer Jobs", should serve you well. Here you will find a current listing of jobs available in the United States, informative statistics, useful videos, and more.
Soul Book

A List Apart: Articles: How to Size Text in CSS - 0 views

  •  
    "When pixels failed before, we turned to ems. Repeating the logic gives us the following styles: body { font-size:100%; line-height:1.125em; /* 16×1.125=18 */ } .bodytext p { font-size:0.875em; } .sidenote { font-size:0.75em; }"
Soul Book

The Incredible Em & Elastic Layouts with CSS - 0 views

  • Elastic design uses em values for all elements. Ems are a relative size, written like this: 1em, 0.5em, 1.5em etc. Ems can be specified to three decimal places like so: 1.063em. “Relative” means: They are calculated based on the font size of the parent element. E.g. If a <div> has a computed font size of 16px then any element inside that layer —a child— inherits the same font size unless it is changed. If the child font size is changed to 0.75em then the computed size would be 0.75 × 16px = 12px. If the user increases (or decreases) text size in their browser, the whole interface stretches (or shrinks.)
  • All popular browsers have a default font size of 16px. Therefore, at the default browser setting, 1em = 16px.
  • The <body> inherits it unless styled otherwise using CSS. Therefore 1em = 16px, 0.5em = 8px, 10em = 160px and so on. We can now specify any element size we need to using ems!
  • ...9 more annotations...
  • However, (gasp) IE has a problem with ems. Resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected. So another selector is needed to get IE to behave: html{ font-size:100%; }
  • Let’s give our <body> some more style, and center everything in the viewport (this will be important later for our content wrapper.) Our initial CSS ends up like this: html{ font-size: 100%; } body{ font-size: 1em; font-family: georgia, serif; text-align: center; color: #444; background: #e6e6e6; padding: 0; margin: 0; }
  • 1 ÷ 16 × 740 = 46.25em (1 ÷ parent font-size × required pixel value = em value)
  • While we're here, we might as well add some typographic goodness by selecting a basic leading and adding some vertical rhythm, with everything expressed in ems.
  • Set a 12px font size with 18px line height and margin for paragraphs
  • Dividing the desired line height (18px) by the element font size (12px) gives us the em value for line height. In this example, the line height is 1 and a half times the font size: 1.5em. Add line height and margin properties to the CSS: p{ font-size: 0.750em; line-height: 1.5em; margin: 1.5em; } Now the browser will say to itself, “Oh, line height and margin is set to 1.5em, so that should be 1.5 times the font size. What’s the font size, again? 12px? OK, cool, make line height and margin 1.5 times that, so 18px.”
  • To retain our vertical rhythm we want to set an 18px line height and margin. Easy: If the font size is 18px then 18px in ems is 1em! Let’s add the properties to the CSS (and make the font weight light:) h1{ font-size: 1.125em; line-height: 1em; margin: 1em; font-weight: 300; }
  • Jon, good article and very useful chartm but your text sizing method has one major drawback. If elements with font-sizes set in em’s are nested, i.e with lists, these elements inherit the font size. Therefore each child element will be 0.75em (or 75%) of the previous one: See an example here. (Would have posted the code put it was coming out really ugly!) I would recommend against using that method and setting the global font size in the body tag i.e. 'font-size:75%' for 12px. Then only setting different font-sizes where necessary.
  • Thanks Will, interesting point, but that is solved with a simple font-size:1em on the first child. Retaining the default ensures that even images are sized correctly in ems. IE (surprise) will compute incorrectly against a parent length equivalent to 12px. My preference born out by some minor but painful computed size errors in complex layouts is not to adjust the body, and only set font size where necessary for specific elements.
  •  
    A nice and simple explanation of using EMs to make elastic layouts
« First ‹ Previous 401 - 420 of 502 Next › Last »
Showing 20 items per page