Blog

How to Make Formatting of Email and Text Field Same in Contact Form 7

If you want to separately format text field and email field in contact form 7, you can do it by this way input[type="text"] { background-color:#000; } and input[type="email"] { background-color:#000; } But in case if you want to keep formatting of input and email field in contact form 7, you can do it with the following custom css. input[type="text"], input[type="email"] { background-color:#000; } Don't forget that it will apply the change to all the input field with text and email attribute. In order to avoid the global formatting of input and text fields, you can use the following CSS...

Simplest Way to Protect Your WordPress Website from Brute Force Login Attempts

There is brute force attack on almost every WordPress based website. The frequency can be more or less but it usually happens with most of the sites (unless you are hidden from search engines or your site is published privately without the world knowing it. The best way to look for such attacks and curb them is to install a plugin to stop brute force attack on WordPress sites. Wordfence do it well and here is screenshot of the monitoring email address which gets a notification every time someone tries to get nasty with your websites. To protect your site, you need to install Wordfence and...

How To Hide Slogan in uDesign WordPress Theme

If you are looking for a solution to hide the slogan (description) in uDesign WordPress theme which goes right under the logo, you can do it by adding the following code to your custom CSS. #slogan { text-indent: -9999px; } If you are using a custom css plugin, you can simply put the code there. In order to use the above custom css code in udesign theme, you need to active the custom css style file in General Setting >> Enable style.css. Once activated this setting for uDesign Custom Style Sheet, you can go to Appearance, Editor and paste the one line of css code at the end. #slogan {...

Recommended WordPress Backup Plugin “BackUpWordPress”

WordPress backup up plugin that let us schedule a backup of database and files together or separately and set an option to keep certain number of backups on the site. BackUpWordPress  https://wordpress.org/plugins/backupwordpress/  

robots.txt FileTo exclude all Robots From The Entire Site

If you don't want to let your sites get indexed on search engines, you can disable access via robots.txt file. Create a file named robots.txt and upload it to your root directory of domain. User-agent: * Disallow: / To exclude all robots from certain directories robots.txt: User-agent: * Disallow: /cgi-bin/ Disallow: /tmp/ Disallow: /junk/

SEO Resources and Best “Do It Yourself” SEO Practices Recommended By Google

SEO is a hot cake these days and getting more visitors and thus profit is a major part of everyone running a website today. Here are 2 pages (external, below) that will tell you everything you need to know for a good SEO of your site, yourself! These links are excellent for someone who want to know the best SEO practices and apply it without hiring an SEO professional. This post is for basic SEO enthusiasts which contain links to Google pages focused on two areas 1. Do you need an SEO? https://support.google.com/webmasters/answer/35291?hl=en and 2. Steps to a Google-friendly site...

Plugins For A Fixed Footer Bar on WordPress

Are you looking for a fixed notification bar at the bottom of your WordPress website? Here is a plugin that you can try: WPFront Notification Bar This plugin comes with lots of features and customization and you can have almost all the commonly used static and fixed footer elements. You can display your email address and number or social media links or anything that you like.

Is Your Skype Not Showing Notification On Receiving Messages From Some Users

If you have a situation where you get notifications from one user and don't receive notification from another user on Skype you can try the following fix as suggested by Skype: Check if both of you are running the latest version of Skype. This ideally should fix the problem of Skype notification not being received from a specific user/s. If Skype no longer informs you that you’ve received a new instant message even when you and your contacts are online at the same time (from one or more of your contacts), it means that the sender uses an outdated version of Skype with an expired security...

How to Create Contact Form Similar To Bubbles Parallax One Page WordPress Theme Demo

If you are using Bubbles WordPress theme and want to create contact form similar to the demo, you need to use contact form 7 plugin. By default the formatting of the contact us page won't be same as the theme demo. You need to add contact form 7 short-code between this shortcode provided by Bubbles theme: Thus, if you want to create a contact form like demo at WordPress Bubbles theme Place your contact form 7 short-code between [contact_form] [/contact_form] Final code looks like this [contact_form] [contact-form-7 id=”2458” title=”Contact form 1”]...