Skip to main content

Home/ Groups/ Web Development, Design & Programming
1More

HTML5 Web Development - 1 views

  •  
    Weblineindia HTML5 Web Development team offer affordable and time saving HTML5 Development solution. You can also Hire HTML5 Developer to get cost-saving HTML5 Website Development service.
1More

Offshore Software Development - 0 views

  •  
    Offshore Software Development company weblineindia provides Outsource Software Development, Offshore Outsourcing web development and mobile application Development services across the world.
1More

Web Redesign Company Create Your Way of lifestyle Around the World - 0 views

  •  
    Once you discover a Web Redesign Company, the next phase should be finished by the organization's solutions evaluation. Online has been become a purchasing mall of innovative isle, so the organization should be able to come back to you with the right of their businesses and framework, together with their support.
1More

iPhone Application Development - 0 views

  •  
    Weblineindia is a leading Mobile App Development Company provide iPhone Application Development, iPhone App Development services at affordable Cost. Hire iPhone App Developer for Custom iPhone Development solution.
1More

20+ Thoughts on CSS/HTML Preprocessors and Frameworks - 2 views

  •  
    A collection of controversial articles about CSS HTML preprocessors and frameworks and their role in the modern web design and front-end development: opinions, thoughts, and case studies.
1More

Windows Phone Application Development - 1 views

  •  
    Weblineindia is leading Windows Phone application development services provider. Our Windows Phone Developer provides quality WP7 Apps Development and Windows Phone App Development solutions at affordable cost.
5More

Introducing LESS: a Better CSS - 2 views

  • I’ve tried SASS and really liked it, but one thing really bothered me. I didn’t like how all the syntax was different to CSS. Sure, it’s not CSS anymore, it’s SASS, but do we really need to change the syntax of the stuff already present in CSS — why not just expand it?
  • LESS, which stands for Leaner CSS.
  • LESS augments CSS with 4 main features: variables, mixins, nested inheritance and operations.
  • ...2 more annotations...
  • division, multiplication, addition and subtraction
  • LESS looks just like CSS, and the syntax we picked for the extra features is very CSS-like. This means you can rename your existing ‘.css’ files to ‘.less’ and start using the new features.
6More

Breadcrumb Navigation | Usability.gov - 2 views

  • another option may be a trail indicating the site’s prime architecture, regardless of the visitor’s path throughout the site. The latter option, along with other navigation cues, may be better in helping site visitors form a mental model of the site
  • Research indicates that frequent visitors may be the ones to get the most advantage of breadcrumbs.
  • It is probably not worth the effort to include breadcrumbs unless you can show that your Web site’s users use them frequently, either to navigate the site, or to understand the site’s hierarchy.
  • ...3 more annotations...
  • The rationale for the arrows instead of colons or other indicators was because “the arrows seem to be slightly easier to understand as an indication of moving deeper and deeper into the site.”
  • Rogers and Chaparro (2003) found that the most effective use of breadcrumbs occurred when the trail was placed below the page title instead of above it at the top of the page.
  • Research indicates that those who would most benefit are frequent users who spend a lot of time on a site and who have had some instruction in the usefulness of the breadcrumbs.
1More

Bogan Ipsum - 1 views

  •  
    Get professional, low priced & high quality website templates from Templatesrange. http://www.templaterange.com
1More

Mobile Application Development - 0 views

  •  
    Weblineindia is a leading Mobile Application Development Company offers custom Mobile App Development services for iPhone, iPad, Android, BlackBerry and windows Mobile. Hire Mobile Application Developer at affordable cost for Mobile Apps Development solution.
1More

Homepagevorlagen mit CMS - 0 views

  •  
    Die Internetagentur aus München bietet professionelle Homepagevorlagen welche zur Pflege der Seite das CMS Weblication® verwendet. Die Architektur ist W3C-Valide programmiert und erfüllt alle Anforderung hinsichtlich SEO und Crossbrowser Programmierung. Darüber hinaus enthalten die Pakete Webhosting, Domainhosting und erste Suchmaschinenanmeldungen.
1More

Outsource Web Development Needs To Hire Dedicated PHP Developer - 0 views

  •  
    A hire dedicated php developer can fulfill all requirements of projects with full concentration and will develop fully powerful and highly functional web application for a client. He will communicate personally with the client either by phone or video conferencing for solving any issue of project.
1More

Which responsive images solution should you use? | CSS-Tricks - 1 views

  • The only technique I know of that works with absolutely no markup changes is Adaptive Images. It works by routing requests for images through a PHP file which intelligently serves (and creates if need be) images of the appropriate size for the screen width.
7More

Details | Adaptive Images - 1 views

  • Here you can find out how Adaptive Images works, how to install it, how to customise it for your needs, and learn about the limitations of the approach.
  • Installation One important thing: do not over-write any existing .htaccess file. If you have one already, back it up. Feeling up to it? Excellent
  • If you already have an .htaccess file, open it in a text editor and add the code from the supplied file into your existing one. To support Retina displays use the alternate JS.
  • ...4 more annotations...
  • configuration section at the top of the PHP file
  • This is a PHP solution.
  • Adaptive Images will not work if you’re using a CDN to deliver your website.
  • there is no way to guarantee that a cookie will be set before images are requested
2More

The best way to research your next web project | Boagworld - 1 views

  • Before starting your next project take a step back and do the groundwork. In this post we look at how to research your objectives and why its so important.
  • at the least this kind of research will inform a major redesign project. It also has the potential to save a project hundreds of thousands of dollars by revealing that what was originally envisaged is not actually required. Nothing is more dangerous than going down the line of thought which results in a website which does not meet users needs or fulfil the organisation’s objectives.
9More

@font-face gotchas « Paul Irish - 1 views

  • There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well.
  • And.. regarding @font-face syntax I now recommend the bulletproof smiley variation over the original bulletproof syntax.
  • @font-face { font-family: 'Graublau Web'; src: url('GraublauWeb.eot'); src: local('?'), url('GraublauWeb.woff') format('woff'), url('GraublauWeb.ttf') format('truetype'); }
  • ...5 more annotations...
  • in Webkit (Chrome/Safari), applying font-weight:bold to faux-bold some @font-face'd text will not succeed. Same applies for font-style:italic.
  • text-transform doesn't play well with @font-face in current implementations.
  • @font-face doesnt play nice with css transitions.
  • If a @font-face declaration is within a media query @media screen { ..., it will fail in Firefox.
  • SVG Fonts - Currently SVG is the only way to get webfonts working on iPhone and iPad.
  •  
    "There are a few reasons why smiley is a better solution: Webkit+Font Management software can mess up local references, like turning glyphs into A blocks.  (crbug.com/33173) On OS X, Font Management software may alter system settings to show a dialog when trying to access a local() font that's accessible outside of Library/Fonts. More detail on my bulletproof post. (crbug.com/29729) Font Explorer X is also known to mess up other stuff in Firefox: bugzil.la/531771 Although it's unlikely, you could reference a local() font which is completely different than what you think it is. (Typophile post on different fonts, same name) At the very least its a risk, and you're ceding control of the type to both the browser and host machine. This risk may not be worth the benefit of avoiding the font download. These are all pretty edge case issues, but it's worth considering. FontSquirrel has already made the smiley syntax the new default in the Generator, and you should use it going forward as well. "
« First ‹ Previous 441 - 460 of 2711 Next › Last »
Showing 20 items per page