Skip to main content

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

Rss Feed Group items tagged

joneywok

Hospital ERP software solutions in Delhi - 0 views

  •  
    Abaris Softech Hospital Solutions with health care facilities to improve overall financial & operational efficiency of clinical departments while enhancing. The quality of patient care we realize that no two health care organizations are alike.
Daniel Falk

Software Development, Web Development and Hosting - 0 views

  •  
    Web development and software development are two extensively used terms. Software development is an inclusive term with different fields and… http://nexvistech.over-blog.com/2015/09/software-development-web-development-and-hosting.html
  •  
    Web development and software development are two extensively used terms. Software development is an inclusive term with different fields and… http://nexvistech.over-blog.com/2015/09/software-development-web-development-and-hosting.html
Ogma Conceptions

Is the SEO dead? | Ogma Conceptions blog - 0 views

  •  
    A typical question that to be answered in a very unique way. It's obviously true that present SEO does not follow the same rules which we followed recent two or
Pooja Runija

Top 7 Technology Trends in 2015 - 0 views

  •  
    Technology and Innovation are the two sides of a single coin. That's because it flashes its brilliance just with an incremental change. But to understand, what's happening and why is to keep watching, you have to look forward with the promise of big changes in 2015 and beyond.
Redesign Unit

World Wide Custom Website Design - 0 views

  •  
    Custom Website Design have also developed into two types: static pages constantly present the same content while dynamic pages have the ability to change their visual appearance depending on what the user and the developer does when using or modifying the page.
Jochen Burkhard

PHP Gotchas: Part 1 - 0 views

  •  
    HP is a remarkably easy language to get started with but from there, if my own experience is anything to go by, developers seem to experience a "rollercoaster ride" in terms of productivity. Some people refer to PHP as the "Visual Basic of Open Source", which is both a complaint and a complement. A quote attributed to Bjarne Stroustrup (designer of C++); "There are only two kinds of programming languages: those people always ***** about and those nobody uses."…
awqi zar

PDF Generation with Zend Framework | LiveDocx in PHP - Zend_Service_LiveDocx - 1 views

  •  
    Generating print-ready well-formatted PDF documents with PHP is not an easy task. Traditionally, there are two main approaches to PDF generation with PHP. Given sufficient time and patience, both partially get the job done, but still leave a lot to be desired.
Jungle Jar

JungleJar | A Closer Look at CSS Tab Designer - 0 views

  •  
    Do you ever find yourself sitting in front of Photoshop for hours trying to mock up a decent navigation menu, or searching the web for the most aesthetically pleasing color palettes for your users to click on that doesn't remind them of McDonalds or a funeral parlor? Face it, sometimes we all lose our mojo for a moment or two, and then we are forced to validate ourselves not just to the W3C, but also to our website visitors, design clients and portfolio piranhas. And then we remember that through the general kindness of a group of web designers and/or developers, and through organizations such as The Creative Commons who work to guarantee that kind freedom, we don't always have to be the Picaso of style sheets.
Raja uk

Vertical Menu with Show/Hide Effects | Mootools | Ajaxmint.com - 0 views

  •  
    simple tutorial with two vertical menu examples with show/hide menu effect. First example uses a simple JavaScript code. Second example uses mootools to show/hide the menu with a nice vertical slide-in/slide-out effect.
Raja uk

Hover Accordion | jQuery | Ajaxmint.com - 0 views

  •  
    A jQuery Plugin for no-click two-level menus.
Raja uk

JavaScript dialog box | Ajaxmint.com - 0 views

  •  
    f you aren't satisfied with prompt, confirm, alert or window.open, then you need JavaScript dialog box. Dialog box is emulated with two DIVs.
Kashif Mehmood Mughal

Where we can Hosting a Joomla Website | Tutorial Lounge - 0 views

  •  
    When blogging is being discussed, Joomla is frequently mentioned as one of the best blogging platforms. This is so because there is no doubt that Joomla is one of the best CMS (Content Management System). Joomla can be used not only as a blogging platform but you can also run an ordinary site on it, a shopping cart or even a media gallery (though there are other applications for the last two purposes and they are better than Joomla). Joomla is a free, open source application. It is written in PHP and it works with MySQL database server. The public view for the default installation for Joomla 1.5 (the latest stable version) is shown in the screenshot below.
Kashif Mehmood Mughal

25 Ultimate Useful Joomla Tutorials | Tutorial Lounge - 6 views

  •  
    We proudly presenting some useful tutorials about Joomla (Free Open Source CMS), we getting all of these from two famous resources "siteground" and "joomlashack tutorials", hope you will be in prectice all of these helping trainings. This Joomla tutorials collection is dedicated to showing you the basics of the Joomla 1.5 CMS. After reading it, you will be able to create a fully-functional website with Joomla in just a few minutes. Joomla 1.5 is one of the most popular content management systems (CMS). With it you can easily create and manage your website. If you have little or no programming skills, Joomla is the right tool for you! With Joomla you can quickly set up a professional-looking website, choose among many free Joomla templates, create articles, add contact forms, polls, counter, allow user registrations, install extensions for additional functionality, etc. And the best of all, Joomla is absolutely free (GNU / GPL license).
Soul Book

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
Inspirationfeed

18 Tools for Scheduling Future Tweets - 0 views

  •  
    Want to tweet day and night without touching the computer? Well now you can. Its a good thing to tweet at least once every hour. This will keep your followers happy and informed. Keep two things in mind, your followers are all in different time zones, and your tweets get replaced by others almost in
Luciano Ferrer

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 )."
damian jacls

Facebook and Google+ Battle it over privacy - 0 views

  •  
    This post is not about Google+ as a marketing platform and neither are we wasting any time cribbing over the dilemma because now there is another social network to bother and maintain. The debate is clearly about the privacy settings offered by the two social networks and thus the one we can trust upon.
tom studer

HTML5 Rocks - HTML5 vs Native: The Mobile App Debate - 0 views

  •  
    Mobile apps and HTML5 are two of the hottest technologies right now, and there's plenty of overlap. Web apps run in mobile browsers and can also be re-packaged as native apps on the various mobile platforms. With the wide range of platforms to support, combined with the sheer power of mobile browsers, developers are turning to HTML5 as a "write one, run many" solution. But is it really viable? There are still compelling reasons to go native, and clearly, many developers are indeed going that route. This article is a debate on native versus the web.
Jochen Burkhard

Scroll/Follow Sidebar, Multiple Techniques | CSS-Tricks - 0 views

  •  
    "Really simple concept today folk! A sidebar that "follows" as you scroll down a page. There are a number of ways to go about it. We'll cover two: CSS and JavaScript (jQuery) with a bonus CSS trick. "
« First ‹ Previous 41 - 60 of 174 Next › Last »
Showing 20 items per page