Category Archives: Web Design & Development

Web design and development is the process of creating and maintaining websites. It involves a range of skills and disciplines, including graphic design, user interface design, coding, and content creation.

The goal of web design and development is to create a website that is aesthetically pleasing, user-friendly, and functional. This involves designing the layout and structure of the site, as well as writing the code that makes it all work.

The design process often involves creating wireframes or mockups to help visualize the layout and user experience. Graphic designers then create visual elements such as logos, images, and color schemes to give the site a cohesive look and feel.

Once the design is finalized, developers write the code that brings the website to life. This includes using HTML, CSS, and JavaScript to create the layout, add functionality such as forms and interactive elements, and ensure the site is responsive and mobile-friendly.

Web design and development is an ongoing process, with regular updates and maintenance required to keep the site running smoothly and up-to-date. It is a complex and ever-evolving field, requiring a combination of technical skills and creative vision to create effective and engaging websites.

Have you ever tried to add a hover effect for mobile devices? Well the truth of the matter is that you cannot do it. Hover effects require you to have a mouse that you can use to hover over an element. This is not the case with touch screens. Some people do work around with Read More

putting-content-inbewteen-posts-wordpress

Insert content on your homepage blogroll in WordPress by programming it in PHP. Its fairly easy and we will provide the codes for you right here. Keep in mind that you should only do this to a child theme. In the tutorial I demonstrated it on a parent theme. Follow the same procedure and edit Read More

Store Image Uploads On Server With Summernote Not Base 64

Store Image Uploads On Server With Summernote, not the default base 64! If you do image uploads through Summernote you will notice that it stores base 64 code for the image. If you are saving that kind of code in your database you will notice that it bloats the database. This will cause lag time Read More

Maximize adsense revenue in your WordPress website. If you really want to increase your earning potential then we have the plugin for you! You are not going to find this plugin in the WordPress directory. This is a custom plugin programmed for people who monetize their WordPress sites with Google Adsense. Download The MAXIMIZE ADSENSE Read More

Automatically Forward Gmail Messages To Another Gmail Account

Sometimes you need to forward messages from another gmail account. If you have different business like I do then you may need to do this process as well. However trying to log in and check different Gmail accounts becomes cumbersome. This is a 11 step process that is going to make you more efficient when Read More

Use Cloudflare DNS Content Delivery Network

This tutorial will show you how to use cloudflare DNS as a CDN {Content Delivery Network}. the process is fairly simple. You will have to log into 2 places. First log into your domain registrar and then Cloudflare. How To Use Cloudflare The first thing that you want to do is start an account at cloudflare.com Read More

YouTube Bans Gun Videos Remove Gun Videos While You Still Can

In an announcement on my YouTube channel yesterday I read that YouTube will be banning videos with guns. This includes gun assembly, bump stocks and more. While this may make a lot of gun enthusiast upset there is something that you must keep in mind. YouTube Is Not “We The People” YouTube is not governed Read More

Most effective and easiest way of backing up your website is in terminal. The process that I am about to show you is very easy. It may look like it is past your capabilities but it is not. If you follow these easy step by step instructions you will have a full backup to download Read More

How To Troubleshoot iCloud Email Filters

Are you missing emails in your iCloud email account? Your email filters could be causing the issue. Junk Mail Filters Like most email programs, iCloud has an automatic filtering system put in place to try to prevent Spam messages from arriving in their users email boxes. For the most part this system functions very well Read More

POSTFIX-DELETE-EMAIL-MESSAGES

If you are running your own mail server you may need to delete messages. If you would like to delete them all use this command. you must be logged in as root. [code]postsuper -d ALL[/code]   The next command will let you delete all email in the queue that is from a certain domain. You Read More

javascript-methods-for-absolute-beginners

There are JavaScript methods that you can take advantage of when you need to. We like to propose applications where you can use such methods. This helps you to understand them better. In this lesson today we are going to use a JavaScript method of push to show a random number. Set The JavaScript Array Read More

free code tester

A1WebsitePro is now offering a great new code testing tool. This tool is useful for everyone who needs a quick resource to test the code that they are working with. A Helpful Tool For Use With Tutorials If you need a place to practice the codes that we provide in our lessons before you add Read More

JavaScript AND OR in IF Statement to Check For Multiple Conditions

Sometimes you want to check if we meet 2 or more conditions in JavaScript. To accomplish this we use the OR “||”, AND “&&” statements within the IF condition. In the last lesson  we were checking the date. If a certain date met the condition we displayed something. What if we had a couple of Read More

JavaScript DOM HTML Events for Absolute Beginners

Lets discuss DOM events in HTML with JavaScript. In the last lesson the event we were calling upon was the “onclick” event. We used a button to accomplish what we wanted. Today were are going to discuss the following events. onclick onload onchange onmouseover onmouseout onmousedown onmouseup onfocus   Setting Variables in JavaScript In the Read More

Coding Websites With CSS Absolute Beginner

This is the lesson where we actually begin to coding websites with CSS. We take the mock-up from the last post and make a real webpage with clickable links. When creating a web page, the first step is usually to create a mock-up or design. This can be done using various design tools such as Read More