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 …
Latest Posts
How To Configure Multiple WordPress Websites On Apache Web Server On Amazon AWS EC2 Instance
This comprehensive guide will explain setting up an Amazon EC2 instance, Setting up the VPS environment to host multiple WordPress websites by explaining the setup process of PHP, MySQL server and phpMyAdmin on the server. We shall setup the database for one WordPress website and learn how to point multiple domains to the web server Continue Reading …
Basics of pointers in C++ (cpp)
Pointers in C++ are powerful and versatile variables that store memory addresses. They allow direct manipulation of memory, dynamic memory allocation, and efficient access to data structures. Here are some basics of pointers in C++: Declaration: Pointers are declared using the asterisk (*) symbol followed by the data type of the variable they will point Continue Reading …
Javascript source code to add multiple images to a single pdf file
Here is the complete code to add multiple images to a single pdf file Continue Reading …
How to create a mobile responsive web page
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 …
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 …