Category: Web Designing

2

Cognizant Outlook configuration

1. Open the Mail option in Control Panel – if you’re running 64-bit, please go to Additional Options and select “View 32-bit Control Panel Items” to uncover the Mail option. 2. Click on E-mail...

0

HTML to OFT conversion for E-Mail template

Create a Email template with HTML and save it on your desired place. 1. Open outlook hit Alt+F11. 2. Insert a Module. 3. Copy Paste the below code and replace the html path. Sub...

3

Create simple website using Adobe CQ5

Step – 1 Run the server in available ports. You can specify 4501, 5400, 8080, etc… Open the CRXDE editor to start creating the website. The default folder shown is apps, etc, libs.

0

Accesskey Implementation

Keyboard shortcuts are a takes major role in operating systems, the same can be applied for any website. This can be achieved by using the ‘accesskey’. This allows the user to jump to a...

2

Adobe CQ5 – Widget xtype

Adobe CQ5 admin panel created with the help of EXT Js JavaScript library. The complete WCM built with EXT Js. EXT Js xtypes are used as CQ5 input types in widgets. Here i have...

0

Toggle effect for fade – with jQuery

Write the below function first: jQuery.fn.fadeToggle = function(speed, easing, callback) { return this.animate({opacity: ‘toggle’}, speed, easing, callback); }; After that you can do as usual like: $(“.main”).click(function () { $(“.child”).fadeToggle(“slow”); });

Trim .php extension using .htaccess 0

Trim .php extension using .htaccess

Trim your .php extension in your web application using .htaccess RewriteEngine on RewriteRule ^$ index.php RewriteRule ^([a-zA-Z0-9\-\_/]*)/$ $1/index.php RewriteRule ^([a-zA-Z0-9\-\_/]*)$ $1.php