Speed Up Your Projects with Twitter Bootstrap 2.0

Twitter Bootstrap is an extensive font-end toolkit that contains HTML and CSS-based templates used for developing web sites and applications like forms, typography, optional Javascript extensions and more. Bootstrap began as an internal Twitter object intended for developing management tools and was made as style guide. It then became popular as many users used this [...]

Continue Reading →

Processing Credit Cards with Paypal Payments Pro Using PHP

One of the most widely used payment processing platforms nowadays is Paypal. Andrew Angell shows you how to process credit cards directly with PayPal’s API using Payments Pro web service API’s. Step 1: Setup Directory Structure Create basic structure. It has 2 files and configuration is stored in config.php and handle the processing code in [...]

Continue Reading →

How to Create CSS3 and jQuery Folder Tabs

Calatin Rosu creates a sleek CSS3 and jQuery folder tabs that can be useful in updating your site’s look. He uses the same procedures in creating good-looking CSS3 tabs. Here’s how you can do it. HTML <ul id=”tabs”> <li><a href=”#” name=”tab1″>One</a></li> <li><a href=”#” name=”tab2″>Two</a></li> <li><a href=”#” name=”tab3″>Three</a></li> <li><a href=”#” name=”tab4″>Four</a></li> </ul> <div id=”content”> <div id=”tab1″>…</div> [...]

Continue Reading →

How to Create Page Transitions with CSS3

Sergio Camalich displays a nice tutorial on how you can have your own site having page transitions effect. The technique he used here are css transitions and :target property. Markup. HTML <!- Home -> <div id=”home” class=”content”> <h2>Home</h2> <p>Some content</p> <!- … -> </div> <!- /Home -> <!- Portfolio -> <div id=”portfolio” class=”panel”> <div class=”content”> [...]

Continue Reading →

Creating a Bubble Point Tooltips with CSS3 and jQuery

Chris Coyier shares a tutorial that creates a bubble point tooltips with CSS3 and jQuery. Note that its demo will not work on Opera. To start with, here’s the HTML: <a href=”#” title=”Hi, I’m a tooltip thingy.”>link</a> Givje the link a title attribute. jQuery: $(“article a[title]“).tooltips(); The plugin will do the following: loop through each [...]

Continue Reading →

Creating a Pure CSS3 LavaLamp Menu

Here’s another cool navigation menu that I came across. Created by the savvy web developers at Script-tutorials, the LavaLamp menu is a navigation menu that is made with pure CSS3. Below are the following codes. HTML Index.html <ul id=”nav”> <li><a href=”http://www.script-tutorials.com/”>Home</a></li> <li><a href=”#”>Menu 1</a> <ul> <li><a href=”#”>Submenu 1</a></li> <li><a href=”#”>Submenu 2</a></li> <li><a href=”#”>Submenu 3</a></li> <li><a [...]

Continue Reading →

How to Create Arctext.js – Curving Text with CSS3 and jQuery

Arctext.js is a plugin created by web developer Pedro Botelho that rotates the letters with CSS3 transformation and arranges them along a curved path. The lettering.js calculates the right rotation of each letter then distributes it across the imaginary arc of the radius. Below is the code: radius : 0, // the minimum value allowed [...]

Continue Reading →

How to Create Vibrant Digital Poster Design with CSS3

Chris Spooner shares a nice tutorial on how you can create a vibrant digital poster design with CSS3. His Circlicious design is made purely of HTML and CSS. Take note that this is only suited to modern browsers of Firefox, Safari and Chrome. HTML <!DOCTYPE html> <html> <head> <meta charset=”utf-8″ /> <title>Circlicious CSS Poster</title> <link [...]

Continue Reading →

Creating Soft Customizable Pressure Buttons in CSS

One of the very interesting techniques in creating buttons with CSS is by Johnny Simpson . His creation is these sleek pressure style buttons that you may find useful in your site. He mainly used multiple box shadows to add depth instead of gradients because it has more solid ground when it comes to support. [...]

Continue Reading →

Keeping the Count with CSS

Jeffrey Way shares with us a great CSS tutorial where you can create a counter which is very handy for presentations, using a counter-increment. Sounds unfamiliar? Well, counter-increment has been around for some time, it’s just that we haven’t used this property a lot. You can use this technique in comments section of your blog [...]

Continue Reading →

Page 7 of 19« First...«56789»...Last »