by P&T BROS | Aug 6, 2015 | Blog, Photoshop Tutorials, Web Designs |
Today we are sharing how to add shadow effect to text in photoshop cs6. There are several ways to create shadow effect on text in photoshop, but today we are going to share the simplest way. Please follow the instruction below! Step 01. Type anything that you... by P&T BROS | Apr 22, 2015 | Blog, HTML & CSS Tutorials, Web Designs |
Today We are sharing about the CSS border properties. The CSS border properties allows you to work on border style, size, and colour. We are going to share some samples and make a beautiful website using the border properties. Sample 01. Border Size .box { border:7px... by P&T BROS | Apr 20, 2015 | Blog, HTML & CSS Tutorials, Web Designs |
Are you trying to centre an element horizontally using css? Here are few methods to centre an element through css. It will help you to centre text and elements in div while developing a website. Method 01. Centering an element .content { width:100px; margin:0... by P&T BROS | Nov 24, 2014 | Blog, HTML & CSS Tutorials, Web Designs |
Create a better designed website using border radius css code. Border Radius Round #box { border-radius:10px; background:#ff3000; } Border Radius Circle #box { border-radius:50%; width:250px; height:250px; } ... by P&T BROS | Nov 23, 2014 | Blog, HTML & CSS Tutorials, Web Designs |
Examples for box shadow effects (outset & inset) Box shadow effect – Outset #box { box-shadow:5px 5px 5px #333; background:#eee; padding:25px; border-radius:5px; } #box { box-shadow:0px 0px 30px #333; background:#eee;... by P&T BROS | Nov 22, 2014 | Blog, HTML & CSS Tutorials, Web Designs |
You can create better designed website using text shadowing effect. We want to share how to apply shadow effect on text using CSS code. It will make your website design more fancy and better! P&T IT BROTHER #text { text-shadow:1px 1px 1px #333;...