7+ Best Freelance HubSpot Experts For Hire In 2025 – Located in USA / Canada
Category: Articles
Are you looking for a freelance HubSpot developer or HubSpot CRM specialist? Below is a list of the best freelance HubSpot experts I recommend. Hiring a HubSpot website developer is ideal for smaller projects where you need to hire a specialist for HubSpot design or development and don’t necessarily need an entire team of people… Read more »
Web Accessibility Evaluation Tool Code Snippets
Category: Code Snippets
Below are some code snippets to help resolve accessibility errors found using the WAVE accessibility evaluation tool.
25+ Questions to Ask When Redesigning Your Business Website
Category: Common Questions
A website created by a page builder service like Godaddy, Wix, WordPress, or Squarespace are a dime a dozen. But a lead-generating website is a rare jewel. Strategically built websites help you generate new business and communicate your brand story. Below is a list of common questions to ask before redesigning your business website. List… Read more »
How to Increase Your Businesses Online Search Visibility & Local SEO
Category: Tutorials
Every business wants to be found online. Having a professional website is a good starting point but you also need to be found on search engines, maps, voice search like Alexa, and business review sites like Yelp. Below is a list of websites every business should be listed on. If you have just one business… Read more »
How to Change Favicon with JavaScript
Category: Code Snippets
This code comes in handy when you don’t have access to the head of the page and need to change the favicon. (function() { var link = document.querySelector(“link[rel*=’icon’]”) || document.createElement(‘link’); link.type = ‘image/x-icon’; link.rel = ‘shortcut icon’; link.href = ‘https://yourdomain.com/favicon.ico’; document.getElementsByTagName(‘head’)[0].appendChild(link); })();
How to Add Retina Images to HubSpot Email and Page Templates
Category: Code Snippets
HubSpot CMS handles responsive images by default by creating different image sizes for different screen widths (using srcset). But with retina display images, you want to load higher resolution images and scale them down to 100%. Thankfully you can add ?noresize to the end of your image source to disable this dynamic resizing. In the… Read more »
SEO for Manufacturers & Industrial Companies in 2023: Is Search Engine Optimization Worth It?
Category: Articles / Common Questions
There are a lot of reasons why you might want to start developing a website for your industrial manufacturing company. It could be a way to expand or establish your small business, or a way to organize a portfolio for your art. It could even serve as a personal website that helps job recruiters find… Read more »
How to Fire a jQuery Function When the Page is Loaded and Resized
Category: Code Snippets
When building responsive websites you often want to run a script when the page loads. But when you resize the window the layout breaks. You can use the on method to run your code if the page loads or has been resized. // run on page load and when the window is resized $(window).on(“load resize”,function(e){… Read more »
Web Font Weight and Style Mixin [Code Snippet]
Category: Code Snippets
If you are using Google Fonts or a custom web font, you probably are writing different font weights and styles. These mixins combine the two to make it really easy to update a global font style in your stylesheet.
How to Visually See What Your jQuery Selection is Selecting
Category: Code Snippets / Tutorials
I was recently working on form validation and wanted to mark a.form-group as successful if it contained a particular icon inside the label. The icon was set using PHP depending if the data existed in the database. I was writing .prev() and .parent() to try and select the wrapping .form-group but it wasn’t working and… Read more »