How to Create Color Overlays to Divi Parallax Background Image
|

How to Create Color Overlays to Divi Parallax Background Image

The Fullwidth Header section in Divi gives you the option to create a background overlay. However, for standard sections (or any other location) that option is not available. This tutorial will show you how to add overlay color to the parallax background image on standard Section. This overlay makes reading the text easier especially when…

How To Add A Dynamic Copyright Year in Divi Footer Bottom Bar
|

How To Add A Dynamic Copyright Year in Divi Footer Bottom Bar

The Divi Bottom Bar, located just below the WordPress footer, is a perfect place for Copyright © 2019 information. If you do not want to add a dynamic year, it is easy enough to just edit the text in the Theme Customizer by editing the Footer->Bottom Bar->Edit Footer Credits field. But every year you have…

Fatal error: Allowed memory size of bytes exhausted. Increase the Maximum File Upload Size in WordPress
|

Fatal error: Allowed memory size of bytes exhausted. Increase the Maximum File Upload Size in WordPress

Does your WordPress site show an error message similar to this? 1. Increase PHP Memory Limit in WordPress, wp-config.php file you need to paste this code in wp-config.php file just before the line that says ‘That’s all, stop editing! Happy blogging.’ This code tells WordPress to increase the PHP memory limit to 128MB. 2: Theme Functions…

Changing the font size, line height and code box padding of Syntaxhighlighter Evolved plugin
| |

Changing the font size, line height and code box padding of Syntaxhighlighter Evolved plugin

By Default Syntaxhighlighter Evolved plugin came with no top and bottom padding and very tight line height. If you are someone like me who love some breathing space in between every section in a WordPress post then you can try the below CSS code snippet. Screenshots are attached before and after applying the CSS code….

Bootstrap 4 – changes fixed-top Navbar background color on scrolling
| |

Bootstrap 4 – changes fixed-top Navbar background color on scrolling

// navbar background color change on scroll $(window).scroll(function(){ var scroll = $(window).scrollTop(); if(scroll < 300){ $(‘.fixed-top’).css(‘background’, ‘transparent’); } else{ $(‘.fixed-top’).css(‘background’, ‘rgba(23, 162, 184, 0.9)’); } });

How to change the default OS as Windows 7/8/10 in dual boot menu with Ubuntu 16.04/17.10

How to change the default OS as Windows 7/8/10 in dual boot menu with Ubuntu 16.04/17.10

Dual-boot or even multi-boot Ubuntu with other operating systems? You may wish to change which OS starts as default in the Grub2 boot-loader. If you’ve booted into Ubuntu, you can change the boot order via two ways: Set Default OS by Manually configuring Grub: For those who don’t wish to customize Ubuntu via third-party applications,…