A responsive design of a web page is required for a good viewer experience on mobile hand held devices. The web page must look nice on mobile hand held devices. The fonts should be scaled up and other elements of the web page should fit inside the mobile device. To enable this responsive web page Continue Reading …
Category: Web Development
How to create radio buttons for your website?
Radio buttons enable selection of options. In your website you may like to present options using radio buttons. These are required to enable choice of one option out of multiple options by the user. In your input form write the code as follows The following code inside the radio button is optional, you can remove Continue Reading …
How to capture links clicked by a user on your website?
You may like to know details about the links clicked by the users on your website to know the details of the traffic o your website. This article will describe in detail about capturing the users clicking links on your website. We shall do that using Ajax. Inser the following code in the head section Continue Reading …
How to create a mobile responsive image that shrinks and expands using CSS
You may have images on your website that you would like to view in smaller sizes on hand held mobile devices. Creating a mobile responsive image that shrinks and expands with the size of the viewport is the solution. In this article we shall describe how to create a mobile responsive image using CSS. Add Continue Reading …
How to create a responsive navigation menu
Responsive menus are required for a good viewer experience on mobile devices. This article will enable you to create a responsive top navigation menu for your website using CSS and JavaScript. Add the following code to the head section of your website. This code includes the JavaScript and CSS Also add the following style to Continue Reading …
Change thumbnail size in wordpress
We must understand theme thumbnails sizes before I tell you about changing thumbnail sizes without using a plugin.Featured image and thumbnail are just the same in WordPress. The Thumbnails sizes are defined in WordPress Settings->Media . The smallest thumbnail out there is used as thumbnail in the archive pages,search and category post listings.This may be Continue Reading …
Php script to split large files to smaller files
This article will describe how you can split large php files line by line to smaller php files. If you have a large php file with content in each line of the file and you would like to convert it to smaller chunks then here you will find the php script code to do that Continue Reading …
Enable syntax highlighter evolved in comments in wordpress
If you would like to enable syntax higlighter evolved by alex gorbatchev wordpress plugin to also do syntax higlighting in the comments then you will have to add enable shortcodes in your comments.Here is how to to enable syntax higlighter in comments.Add the following code to your theme’s function.php Continue Reading …