by Garth | May 11, 2023 | WordPress Blog Posts
Take note of the height restriction! In this case we set the height for the default size of landscape images layout for the divi gallery element. /* Gallery Image Alignment */ .et_pb_gallery_image.landscape { display: flex; justify-content: center; align-items:...
by Garth | May 9, 2023 | Laravel Blog Posts
Create Project Just use one. The are multiple as examples. composer create-project –prefer-dist laravel/laravel blog “11.*” composer create-project –prefer-dist laravel/laravel blog “10.*” composer create-project –prefer-dist...
by Garth | Apr 25, 2023 | Apache Blog Posts, Hosting
First off you need access to the server terminal. Or SSH acces. If you have that then you can proceed. Else go get your Login permissions or SSH access. Connect to your server using SSH or Cpanel terminal. Run the following curl command to download the Node.js source...
by Garth | Apr 16, 2023 | MySQL Blog Posts
Check Serve Status sudo service mysql status Start or Stop MySQL Server service mysql stop service mysql start MySQL Terminal Actions create database this_is_my_database_name; Also, give this a read 🙂...
by Garth | Apr 16, 2023 | Apache Blog Posts
Check Apache Status sudo systemctl status apache2 Start, Stop or Restart Apache sudo service apache2 start sudo service apache2 restart sudo service apache2 stop For other operating systems such as CentOS/FedoraTry httpd instead of apache2Example : systemctl status...
by Garth | Apr 16, 2023 | MySQL Blog Posts
You can install MySQL for Windows here.The new MySQL install very convenient. But is made for Windows. https://dev.mysql.com/downloads/installer/ Give this article a read for Linux https://ubuntu.com/server/docs/databases-mysqlYou can install MySQL for linux like this...
by Garth | Apr 16, 2023 | CSS Blog Posts
The best CSS library I have ever used for mobile Optimisation! https://getbootstrap.com/ After full time developing since 2016 I still used this one almost every project I complete. In terms of mobile optimisation. Bootstrap remains king! It is simple and easy to...
by Garth | Apr 16, 2023 | YouTube Blog Posts
Check out this Derek Banas! Derek Banas was an amazing resource when I was starting out in programming and still to this day is fantastic. He covers fundamentals and explains tpoics very well and clearly for you to understand. I highly recommend this channel! You can...
by Garth | Apr 16, 2023 | PHP Blog Posts
by Garth | Apr 16, 2023 | WordPress Blog Posts
By Adding the below snippet to your WordPress functions.php file you can remove the Divi Project Post Type which is added by Default. add_filter( ‘et_project_posttype_args’, ‘mytheme_et_project_posttype_args’, 10, 1 ); function...