Skip to content
Tawfiq's Blog
  • Home
  • WordPressExpand
    • WooCommerce
    • Plugins
    • Elementor
    • Divi
    • Avada
    • Speed Optimization
  • SEO
  • Front-endExpand
    • CSS
    • Bootstrap
    • JavaScript
  • Snippets
  • Tips & TricksExpand
    • Linux/Ubuntu
    • Mac OSX
    • Hosting
    • VPS
    • Nginx
  • About Me
Tawfiq's Blog
  • Divi | Snippets | Wordpress

    How to Create Separate Call To Action Button for Desktop and Mobile view in Divi Menu

    ByTawfiqur Rahman February 8, 2019November 4, 2022

    Appearance > Menus Enable CSS Classes option from Screen Options Add two Custom Link with CSS class “menu-cta” for Desktop CTA Button and “mobile-menu-item” for Mobile CTA Button Desktop view Mobile view

    Read More How to Create Separate Call To Action Button for Desktop and Mobile view in Divi MenuContinue

  • How to Create Color Overlays to Divi Parallax Background Image
    Divi | Wordpress

    How to Create Color Overlays to Divi Parallax Background Image

    ByTawfiqur Rahman January 23, 2019November 4, 2022

    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…

    Read More How to Create Color Overlays to Divi Parallax Background ImageContinue

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

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

    ByTawfiqur Rahman January 11, 2019November 4, 2022

    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…

    Read More How To Add A Dynamic Copyright Year in Divi Footer Bottom BarContinue

  • Add “Made with Love” with a Heart in Your Divi Footer Credits
    CSS | Divi | Snippets | Wordpress

    Add “Made with Love” with a Heart in Your Divi Footer Credits

    ByTawfiqur Rahman November 23, 2018November 4, 2022

    Theme Options > Custom CSS Note: we should use id=”icon-love”, otherwise it will be overwrite by #footer-info styles. Inline style will not work also.

    Read More Add “Made with Love” with a Heart in Your Divi Footer CreditsContinue

  • Fatal error: Allowed memory size of bytes exhausted. Increase the Maximum File Upload Size in WordPress
    Tips & Tricks | Wordpress

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

    ByTawfiqur Rahman October 1, 2018November 4, 2022

    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…

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

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

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

    ByTawfiqur Rahman September 25, 2018November 4, 2022

    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….

    Read More Changing the font size, line height and code box padding of Syntaxhighlighter Evolved pluginContinue

  • Divi – Aligning the fullwidth slider image right
    Divi | Snippets | Wordpress

    Divi – Aligning the fullwidth slider image right

    ByTawfiqur Rahman September 25, 2018November 4, 2022

    It does seem a little odd that image left and right alignment is not included as a setting in the divi fullwidth slider module. By default when you place an image in fullwidth slider it places left side of the text, what if you want to place the image in right and text on left….

    Read More Divi – Aligning the fullwidth slider image rightContinue

  • Divi | Snippets | Wordpress

    Divi – Center align Text in mobile view

    ByTawfiqur Rahman September 25, 2018November 4, 2022

    If you want to show your content center align on mobile devices for some specific section then you can do this very easily via CSS.add a custom CSS class of ts-center-text-mobile in Text Module settings and use this bit of CSS in Divi > Theme Options > General > Custom CSS section If you want to…

    Read More Divi – Center align Text in mobile viewContinue

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

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

    ByTawfiqur Rahman July 24, 2018November 4, 2022

    // 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)’); } });

    Read More Bootstrap 4 – changes fixed-top Navbar background color on scrollingContinue

  • Bootstrap | Snippets

    Bootstrap 4 Navbar – align brand to your left and all the navbar-items to right

    ByTawfiqur Rahman July 14, 2018November 4, 2022

    If you want to align brand to your left and all the navbar-items to right, change the default mr-auto to ml-auto <ul class=”navbar-nav ml-auto”>

    Read More Bootstrap 4 Navbar – align brand to your left and all the navbar-items to rightContinue

  • How to quickly Show/Hide Hidden Files on macOS Sierra
    Mac OSX | Tips & Tricks

    How to quickly Show/Hide Hidden Files on macOS Sierra

    ByTawfiqur Rahman April 15, 2018November 4, 2022

    Sometimes there is a need to hide files on a Mac from other people’s eyes. I’ll share some effective ways to hide and unhide files and folders on your Mac with you today. The Quickest Way to Show/Hide Hidden Files Since the release of macOS Sierra, when in Finder, it is now possible to use…

    Read More How to quickly Show/Hide Hidden Files on macOS SierraContinue

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

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

    ByTawfiqur Rahman April 13, 2018November 4, 2022

    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,…

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

Page navigation

Previous PagePrevious 1 … 6 7 8 9 10 Next PageNext

© 2025 Tawfiq's Blog

Scroll to top
  • Home
  • WordPress
    • WooCommerce
    • Plugins
    • Elementor
    • Divi
    • Avada
    • Speed Optimization
  • SEO
  • Front-end
    • CSS
    • Bootstrap
    • JavaScript
  • Snippets
  • Tips & Tricks
    • Linux/Ubuntu
    • Mac OSX
    • Hosting
    • VPS
    • Nginx
  • About Me
Search