Skip to main content

Home/ Web Development, Design & Programming/ Group items matching "Working" 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
1More

A Brief Discussion On Web Design Services in Sydney - 0 views

  •  
    Getting a best quality Website made is not a most difficult thing nowadays. There are mass of Website Designers in Sydney, Australia and lot of them work on a Freelance basis, searching for work when they have free time.
1More

Why Your Website Isn't Working Well! - 0 views

  •  
    You would probably been thinking of the investment you made in website design, its going down the drain or you like many other people would be thinking like "Web does not work".
7More

CSS techniques I use all the time - 0 views

  • EM calculations Sizing text is always an important part of making a usable design. I start all my CSS files with the following rules: html { font-size:100.01%; } body { font-size:1em; } The explanation for this comes from "CSS: Getting Into Good Coding Habits:" This odd 100.01% value for the font size compensates for several browser bugs. First, setting a default body font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. The current "best" suggestion is to use the 100.01% value for this property.
  • I used the following calculation: 14px/16px = .875, 18px/16px = 1.125. So my default text at 1 em would translate to 16px for most users, and my small text I sized at .875em which I can trust to result in 14px for most users, while my large text I sized at 1.125em which I can trust to result in 18px
  • Safe Fluid-width Columns I work with hybrid fluid layouts all the time, usually with max-width set at anywhere from 900 to 1000px. I usually have floated columns with percentage widths, and browsers will calculate these percentage widths to whole pixel values when rendering the columns.
  • ...3 more annotations...
  • A typical problem is the following: when a user has the viewport at a size that makes the outer container 999 pixels wide, if the first column is 60% and the second is 40%, IE 6 will always calculate the two columns as 600 and 400 pixels and as a result, the two will not fit (600+400 = 1 more than 999) and it will drop the second column. This is obviously not intended behavior, and in a world where we still have to use floats for columns (I can't wait for display:table support across all browsers), it's important to work around this problem. I used to give my last column 1 less percent (in this example, it would have 39% instead of 40%, but this would usually result in columns that don't quite fill up the container. Of late I have been giving the last column .4 less percent (in this example, 39.6%), which seems to work perfectly. Browsers will calculate this width and round up, but it will still fit even with an odd container width like 999px and I won't have to worry about dropped columns.
  • Filtering for Old Browsers To be honest, I barely support IE 6 nowadays. If there is something special about my layout that doesn't work in IE 6, I will simply filter it out of the CSS that IE 6 understands
  • Because old browsers like IE 6 don't support the "first child" selector (right caret >), I can do the following to make sure that IE 6 only gets the basic setting and all the new-fangled browsers get the right result: div#container { width:900px; } html>body div#container { width:auto; max-width:900px; } /* This overrides the previous declaration in new browsers only, IE 6 simply ignores it. */
  •  
    Excellent simple collection of CSS tips that are easy to remember and implement. It's an old article, but i think everything is still relevant
1More

Best Resources for Submit your Tutorials and Get Traffic | Smashing Buzz - 4 views

  •  
    After done an really creative and professional tutorial we must want to spread our work for get some extra and quality traffic, because most of the design lovers will learn from tutorials, they always helping to know about techniques and tool usability. Today we are with most famous and helping resource who respect your work..
1More

Dive Into HTML5 - 0 views

  •  
    Dive Into HTML5 seeks to elaborate on a hand-picked Selection of features from the HTML5 specification and other fine Standards. The final manuscript has been published on paper by O'Reilly, under the Google Press imprint. Buy the printed Work - artfully titled "HTML5: Up & Running" - and be the first in your Community to receive it. Your kind and sincere Feedback is always welcome. The Work shall remain online under the CC-BY-3.0 License.
1More

Logo design In Canada - 0 views

  •  
    Canada has been always a favorite destination for people around the globe, according to a research 100 Million people have migrated to Canada in the last 15 years and most of them either start their own business or be a part of business as most of them are highly educated or highly skilled so rather then working for someone they find it more suitable to work on their own.
1More

Doing It Yourself - Problems You'll Face - 0 views

  •  
    It is often the case that small business owners think they will minimize costs by simply doing the job themselves. Building your own website and then managing online marketing yourself is a good opportunity to cut costs, but it will only make a difference if in fact there are profits coming in. For some, it may work. If it does not work for you, turn to a professional to help you through this process.
1More

[how to] FCKeditor Image Upload / Browse Server 2.10.14 - 0 views

  •  
    "[how to] FCKeditor Image Upload / Browse Server 2.10.14 Hi All, As of 2.10.14 this is what I found to work in getting the image / file upload and browse server feature to behave as you would expect. As with all forums information becomes fragmented as versions change and solutions are found so as requested I've put the following together from my experiences to get things working with FCKeditor."
1More

JQuery Scroll to top dynamic plugin - 0 views

  •  
    "UItoTop jQuery Plugin Inspired by the great idea of David Walsh's jQuery topLink Plugin, I made a similar plugin but with two key differences, this one does not require you to add extra html markup or extra plugins to function. It will only work when JavaScript is turned on ( on purpose ), It's easy to setup with only one line of code, and it works cross-browser nicely ( Tested: IE6-8, FF, Safari )."
1More

Project Management Software, CRM, Sales, Intranet - thousands of apps - Podio - 0 views

  •  
    For the first time ever you can create your own work tools and shape the way you work. No technical skills required. No dependency on IT.
1More

40+ Striking Adobe Fireworks Tutorials - 4 views

  •  
    Now Adobe Fireworks is getting famous then before, because this growing prototyping tool for designers, many web designers find different techniques, experiments and learn how to work with various characteristics of Adobe Fireworks to interest up tedious pictures and make them into works of arts, in these of all listed tutorials many ways to get more inspirational stuff for design industry, If you're interested in improving your skills with Fireworks, here are some of the best tutorials available.
1More

50+ Useful CSS Professional Techniques | Dzinepress - 6 views

  •  
    As we know most of the Web designers and developers only scratch the surface of the potent language that is CSS (cascade style sheet), like programming languages, CSS has a quite simple learning twister, normally being used more often in every web project. CSS as language giving many advantages even working in table based design or table-less designs, most of the time our designed pages can easily change after replace a css file with another one. When we working on latest trends, Tab Navigation has been one of the essential element in any contemporary web layout. In order to make sure visitors can properly navigate through the website through our used techniques, here in listed CSS stuff we offering some best and most useful Cascade style sheets with source files which can help for more inspiring developments.
1More

Authentication & Authorization with CakePHP - 0 views

  •  
    Why and how authorize and authenticate? Process of authorization ensures the identity of any user in the system. To achieve successful authorization CakePHP uses Auth Component. By default Auth works with databases, but you are the boss and can change its configuration to work with anything.
1More

Ecommerce web development company India - 0 views

  •  
    Make your website user attractive & user friendly with Dean Infotech, because we have an experts team which are very capable in this works. Also with 100% work satisfaction & 24*7 support service. for more info about offers & services you can directly talk to us on live. chat.
1More

9 Inevitable Web Designs You Should Have in 2016 - 0 views

  •  
    As the business on the internet is moving very fast, you need to keep pace with the latest trend of web design to remain ahead of the digital marketing race. You may either hire a team of developer or you may outsource your work to an agency to get your work completed.
1More

Top 10 Best Websites When You Are Bored At Work - Designsave.com - 0 views

  •  
    Do you ever feel bored ? Here at DesignSave, we have for you a list of top 10 best websites when you are bored with your life, your work.
1More

Web Development Company Portfolio| Graphic Design Portfolio| Portfolio- WsCube Tech - 0 views

  •  
    WsCube Tech portfolio shows our work, which has been done by us. As a web development company portfolio it contains variety of designs. Graphic design in portfolio show the quality of work we have done.
1More

Web Developer Basics: The HTML5 Video Element - www.htmlgoodies.com - 1 views

  •  
    This article begins a "mini-series" of our in-depth coverage of important new elements in HTML5 to help you create media-rich pages that will work in any compliant browser. It's recommended that you also read the prelude to this article, Multimedia In HTML5. HTML5's video element is conceptually easy to work with, since at bottom it's been designed like the tag...just code and go:
1More

How to Make Your Healthcare Site Work for You? - 0 views

  •  
    Having a simple medical website is not the guarantee that your practice will grow, and your medical office will attract new patients. You need to keep in mind that your healthcare website should be fast, and it includes all crucial elements that could boost your practice. Learn here about the eight ways to make your healthcare site work for you.
1More

An Introduction to ecommerce, Growth of E-commerce in India | eCommerce Web Design comp... - 0 views

  •  
    Max Vision Solutions is global IT company dedicated to providing Website Design, Website apps, Mobile Apps development and Digital Marketing Services. Max Vision Solutions Focuses On Providing The Top-Notch Quality Products And Services In Given Timeframe. We Are Currently Working With Many Small, Medium And Large-Sized Enterprises Along With The Individual Customers As Our Personnel Are Highly Motivated To Deliver The Work, Tailored To The Exact Needs Of Customers.
« First ‹ Previous 41 - 60 of 922 Next › Last »
Showing 20 items per page