- Yoast SEO
- All-In-One SEO
- Rank Math
- Meta Tag Manager
- Schema
- Add Meta Tag Keywords
- Keywords Everywhere
- SEMRush
- Google Keyword Planner
- Google Trend
- SEO Quake
This kind of strategy is easy to implement just go to your Elementor editor where you edit the page then drag the Divider element, do some settings changes, then add this line of code below into the Custom CSS.
Also, you need to change the width from Percentage into Pixels:
This is a quick list of some most themes that I work on each of my project, though some of my clients have their own themes installed on their themes, but when I will be the one to build the site from scratch this is most of the themes that I use.
- Hello Elementor
- OceanWP
- Astra
- Sahifa (for Blogging)
- DIVI Theme
- Genesis
- Jevelin
- The 7
- Avada
- BeTheme
The code snippet above is a custom CSS in which you can add an overlay background which is not achievable in DIVI builder for now, but in Elementor its already available, I just added it here for reference and probably it is also helpful to WordPress Developer/Designer.
Page Builder, I Am Using for WordPress Development:
Visual Composer - This is one of the most common plugins I use to build Websites in WordPress CMS.
DIVI Builder - I once use this builder and it's really good as well, there are premium themes that use this builder called Divi Themes.
Elementor - This one is my favorite but since my recent client did not use this one as they prefer Visual composer I rarely use this, but what I like this one is that you can create your own custom elements with it, you can try it with a free version, and there is also an Elementor Pro version of it, I mostly do some small projects using this builder in my localhost server.
Other Plugin Extension I Use:
- Overlaiz
- Unlimited Elements for Elementor
- Essential Addons
- Happy Elementor Addons
- OoohBoi Steroids for Elementor
Thrive Architect - I have a client who has all tools in Thrive and this builder is also good, but I think its too expensive, but to be honest its really good, you can create a decent page for the blog page before I develop a blog and Photography site using this builder.
Avada Builder - I also use this as it also has powerful tools, the only problem with this is that it is only intended for Avada Themes, not unlike Elementor which is compatible with most of the themes you can imagine.
#bryangransedevs #wordpressdeveloper #development #wordpress #photography #projects #pagebuilder #elementorpro #elementor
This Simple coding is just documentation for my NodeJS journey, and I also do JavaScript/ReactJs/Express Journey and also Laravel which will soon be displayed on this small basic blog site of mine.
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Javascript Fetch JSON FILE</title> <link rel="shortcut icon" href="data:" type="image/x-icon"> </head> <body> <div class="output"></div> <script src="./app.js"></script> </body> </html>App.js is where the JavaScript magic happens to fetch the JSON file.
const url = './data.json';Below is the JSON file that I use, you can create your own and explore, this is just for testing that will let us display data using XML http request.const output = document.querySelector('.output');let xHR = new XMLHttpRequest();console.log(xHR)xHR.open('GET', url);xHR.responseType = 'json';xHR.onload = function() {console.log(xHR.response);let data = xHR.response;data.books.forEach(result => {output.innerHTML += `§{result.title}<br />`;}) }xHR.send(); console.log(xHR);