Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged displays

Rss Feed Group items tagged

htmlslicemate.com

Authenticate Your Twitter API Calls Before March - 0 views

  •  
    On the 5th of March, Twitter is going to retire version 1 of its API. The replacement, version 1.1 is very similar, but with one major difference; every single call must be authenticated. This means that come March, your existing API calls will break; including simple things like displaying tweets on your site. To fix this, you need to move to the new v1.1 API, and authenticate with Twitter. Let's look at how to do this in WordPress, by embedding a list of tweets on your site
htmlslicemate.com

Clown Car Technique: Solving Adaptive Images In Responsive Web Design - 0 views

  •  
    Adaptive images are the current hot topic in conversations about adaptive and responsive Web design. Why? Because no one likes any of the solutions thus far. New elements and attributes are being discussed as a solution for what is, for most of us, a big headache: to provide every user with one image optimized for their display size and resolution, without wasting time, memory or bandwidth with a client-side solution..............
htmlslicemate.com

20 Beautiful One Page Responsive Templates for a Low Price! - 0 views

  •  
    One page layout designs have been a popular trend lately especially with freelancers. Many freelancers have decided to opt for single page website design because it is straightforward and easy to maintain. Freelancers can showcase their works in an instant without unnecessary confusion with key information displayed. Today, freelancers get to choose from 20 beautifully designed HTML5 responsive one page website templates built with a parallax effect over at Mighty Deals to effectively showcase their portfolio.
htmlslicemate.com

Infographics Resources: Tools, Tutorials and Free Infographic Elements - 0 views

  •  
    Infographics have become a popular means of displaying information. It is a well known fact that the attention of viewers is attracted and held better through images than text, and people are more likely to digest the information in images. Road signs were probably among the first infographics; they needed to impart necessary information at a glance, and they have achieved that by using graphics and very large text, and that is the basis of modern infographics, which are becoming available for all trades, services, products and niches. Today we are bringing you a collection of online infographic tools, some tutorials, guides and articles on infographic creation and some beautiful free infographic elements and kits. All in all, you should be able to gather your data and create your masterpiece with the help of these resources.
htmlslicemate.com

27 WordPress Mobile Themes - 0 views

  •  
    Responsive web design gets plenty of attention, and rightfully so, but in some situations you may prefer to use a separate theme specifically for mobile visitors rather than going with a responsive design. WordPress users have a number of themes available that have been specifically created with mobile visitors in mind. These themes will not replace your desktop theme, instead the mobile theme will only be seen by visitors on mobile devices. This setup typically includes a plugin to determine what device the visitor is using, and then it will display the appropriate theme. In this post we'll showcase 27 different options for mobile sites on WordPress. Most are themes, but some are plugins.
Vernon Fowler

Improving 404 Page Design | Webdesigntuts+ - 0 views

  • As we keep mentioning, a 404 page needs to be extremely useful for the user. There are plenty of ways to achieve this, but some of the best features a 404 can have are:
  • A Search Form
  • Display a List of Popular Pages
  • ...6 more annotations...
  • A Link to your Sitemap
  • Report a Broken Link
  • It’s better to say something like "Oops! We couldn’t find the page you were looking for.", than simply stating the facts, such as "404 Error: Page Not Found".
  • Having a minimalist, basic 404 Error page design can still be effective.If you have a massive site, such as Google, with many, many possible related pages then a 404 page with things such as sitemap links, popular pages lists, or a search form isn’t particularly practical, and most likely won’t help the user much anyway.
  • A good 404 page can also be casual, and even funny.
  • The second of these two methods can also be used to stop search engines from finding any pages you don’t want them to see – such as your 404 page, your back-end PHP files (such as login functions) and more. Just add their URL to the robots.txt file and upload it to your server:001Disallow: /404.html
Magento

One Step Checkout Extension- This is easy and simple checkout steps for magento website - 0 views

shared by Magento on 18 Feb 13 - No Cached
  •  
    One Step Checkout Extension Features: User friendly checkout interface All steps on a single page Ajax email validation Ajax loading script Automatically update the Grand total on alteration of shipping method Light box login box Very easy to configure options in admin back end Configurable payment method Clabels are changable Flexible displays for fields whether mandatory or optional and enabled or disabled Optional checkbox for billing address to be shipping address Configurable delivery options with different delivery cost for countries Automatically update the Grand total on selection of delivery option Automatically update the delivery option when shipping address is changed Optional or already-checked box for Newsletter Category subscription Checkbox for Terms and Condition agreement Enable/ disable gift message box Multi-stores support
Saif Shuvo

Professional Web Design & Development Curriculum - 0 views

Lesson: 01 (Dreamweaver Basics & HTML) Introducing Dreamweaver, Elements, Attributes, Table, List, Forms, Formatting, Styles, Image, Hyperlinks. Head, Meta, Scripts, Layout, Fonts, URL- encode ...

webdesign web development

started by Saif Shuvo on 07 Jan 17 no follow-up yet
One World Rental

Laptop Rental - 1 views

  •  
    Macbook Pro Retina (Mid 2012) Display: 15.4 Inch LED (2880 x 1800) Processor: 2.6GHz quad-core Intel Core i7 with 6MB shared L3 cache Memory: 8GB of 1600MHz DDR3L Storage: 256GB SSD & 500GB SSD Graphics: NVIDIA GeForce GT 650M with 1GB of GDDR5 memory Outputs: 2 x thunderbolt, 3 x
linda heller890

Authorized IPhone Store In Meerut | Authorized IPhone Store In Allahabad - 0 views

  •  
    Buy latest apple macbook pro from myimagine store with stunning retina display, high performance technologies and included powerful apps.
Vernon Fowler

Best Practices for Speeding Up Your Web Site - 1 views

  • Arranging the images in the sprite horizontally as opposed to vertically usually results in a smaller file size. Combining similar colors in a sprite helps you keep the color count low, ideally under 256 colors so to fit in a PNG8. "Be mobile-friendly" and don't leave big gaps between the images in a sprite. This doesn't affect the file size as much but requires less memory for the user agent to decompress the image into a pixel map. 100x100 image is 10 thousand pixels, where 1000x1000 is 1 million pixels
  • Minification is the practice of removing unnecessary characters from code to reduce its size thereby improving load times. When code is minified all comments are removed, as well as unneeded white space characters (space, newline, and tab). In the case of JavaScript, this improves response time performance because the size of the downloaded file is reduced.
  • Many web sites fall in the middle of these metrics. For these sites, the best solution generally is to deploy the JavaScript and CSS as external files. The only exception where inlining is preferable is with home pages, such as Yahoo!'s front page and My Yahoo!. Home pages that have few (perhaps only one) page view per session may find that inlining JavaScript and CSS results in faster end-user response times. For front pages that are typically the first of many page views, there are techniques that leverage the reduction of HTTP requests that inlining provides, as well as the caching benefits achieved through using external files. One such technique is to inline JavaScript and CSS in the front page, but dynamically download the external files after the page has finished loading. Subsequent pages would reference the external files that should already be in the browser's cache.
  • ...1 more annotation...
  • CSS Sprites are the preferred method for reducing the number of image requests. Combine your background images into a single image and use the CSS background-image and background-position properties to display the desired image segment.
anonymous

WordPress Templates - Reaping The Most Out Of Technology - 0 views

  •  
    Ever since color has come to beautify the big screen, the craving among the common eye for colorful pictures and displays has been on the increase. We all love to see rosy pictures and beautiful sights. Similarly, all of us love convenience.
Rajneesh Kumar

How A Transportation Website Design Helps You? - 1 views

Having a website adds credibility to your business. When you give a platform to your target customers to reach you, to know you and to contact you, it automatically adds to your online reputation. ...

Transportation Website Design Web

started by Rajneesh Kumar on 29 Oct 13 no follow-up yet
Harikrishna Patel

Web Development: Why Hire a Professional Web Developer India? - 2 views

  •  
    Get the help of professional web developer for website development. The developer knows what clients look in website and they know how to displays the things well. Get the magnificent website today with the help of Softqube experts.
Vernon Fowler

Web Standards - 2 views

  • development is simplified
  • ensure that all browsers will display your Web site properly
  • easier for search engines to access and index, easier to convert to other formats, and easier to access with program code (like JavaScript and the DOM)
  • ...1 more annotation...
  • easier for people with disabilities to use the Web
  •  
    I think everyone should read your blog who want to good information about Web Development services. Thanks and keep it up!
michaeallen

Use Wi-Di devices to enjoy Laptop's multimedia stuffs in HDTV - 0 views

  •  
    If you are unable to stream your laptop videos with your TV screens by using Wi-Di. Here are tips to use Wi-Di devices to enjoy Laptop's multimedia stuffs in HDTV.
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.
software supprt

Software Support Saved My Spring Days - 2 views

Last spring, I was having trouble with a recurrent problem from a software I installed on my PC. It keeps on displaying errors on the screen which really got me ticked off. After 2 weeks of putting...

software support

started by software supprt on 03 Aug 11 no follow-up yet
Maria Babae

They Can Fix Computer Problems Instantly - 2 views

I was doing very important work on my PC when suddenly it shut down and displayed the blue screen. I immediately called Fix Computer Problems Site to help me out. They accessed my PC remotely to fi...

software internet computer web PC

started by Maria Babae on 10 Aug 11 no follow-up yet
« First ‹ Previous 121 - 140 of 228 Next › Last »
Showing 20 items per page