Categories
CSS-Tutorial

Horizontally centering a child DIV inside container or parent DIV element

This CSS tutorial describes – how to place a child DIV inside a PARENT DIV exactly horizontally centered. How to horizontally center a child DIV element inside a parent or container DIV block. A CSS tutorial by Bikram Choudhury, who conducts web designing coaching classes in Kolkata

Categories
CSS-Tutorial

Horizontal Centering of (side by side placed Multiple Child DIV)s inside container DIV

<div class="parent">
<div class="wrapper">
<div class="content">
Child block 1
</div>
<div class="color_change_with_centering_text content">
Child block</div>
</div>
</div>

Categories
Java Tutorials

Array as private data member inside a Java class, access by getter and setter methods

Data hiding concept, private data member of a Java class described with the help of a Java array, where an array declared as private member inside a Java class. So you cannot access the array elements inside Java class directly. You can insert integers in the array, delete array elements (which are integers) and get element from the array in Java with the help of getter and setter methods. Deletion of array element needs shifting of elements because it creates a vacancy inside array.  A practical example of data hiding w.r.t array as private data member inside a Java class.

Categories
JavaScript PHP Tutorials

Using jQuery AJAX and PHP how to fetch MySQL table records array as JSON format

Using jQuery AJAX and PHP how to fetch data from a MySQL database table as JSON format. The PHP script retrieves the MySQL tables records and send to client side jQuery Script as JSON string format. This tutorial also explains how to retrieve data from MySQL database in JSON format using PHP, AJAX & jQuery and how to convert MySQL records or rows in JSON format using PHP and jQuery.

Categories
Adobe illustrator

How to create clipping mask & opacity mask in Adobe illustrator

How to apply clipping mask in Adobe ( ai ) illustrator. According to Adobe – CLIPPING MASK is a group of layers to which a mask is applied”. Suppose you have a shape in the top layer and you have placed an image below it. Then after applying clipping mask you shall be able to see the image only through the boundaries of shape. Other portion of the image should remain hidden. The bottom – most layer defines the visible boundaries of the entire group of layers of shape, images. But description does not clarify a clipping mask. You have to see the result.

Categories
Adobe illustrator

Reflect tool in Adobe illustrator for text mirroring effect

In this tutorial the use of reflection tool in Adobe illustrator for text mirroring has been shown. This is a very simple tutorial on reflection tool (Adobe Ai). Just learn – “how to create text mirroring in Adobe illustrator (Ai)”.

Categories
Adobe illustrator

Stroke Panel in Adobe illustrator – Cap, Corner and Align Stroke

This is a tutorial on Stroke Panel of Adobe illustrator. By the stroke panel you can change the thickness of a line, rectangle or circular shape drawn. Even you can make the corners rounded, you can convert a line to an arrow, double headed arrow and more. This tutorial written by Adobe illustrator training course guide Mr. B Choudhury.

Categories
Wordpress Tutorials

How to add Google Analytics JavaScript Code to WordPress

A common usage of WordPress plugins is to add “JavaScript code or CSS files , CSS scripts in the head section of every WordPress page or post. In same way you can add Google Analytics code  in WordPress. You can add JavaScript code in WP directly in header.php file or using a plugin. Both discussed in this tutorial.

Categories
Java Tutorials

Interfaces in Java & inheritance among interfaces in Java

Learn what are Java interfaces, and how multiple inheritance is incorporated in Java with the help of Java interfaces.

Categories
Java Tutorials

Java Multi-threading & Thread States – a tutorial

Learn Java multithreading and concurrency. Learn about Java thread states and different steps of multithreading with simple examples.