How to Make CSS Style Customizations to HubSpot CMS Pages

Category: Articles

Are you creating a HubSpot landing page or website page but want to make a small design style adjustment? Sometimes you just have to dig in and get your hands dirty writing some code. But don’t worry it isn’t as bad as it looks. And if this is your first time, afterward you will think […]

Continue Reading

How to Build a HubSpot Website for Your B2B Business With No Code

Category: Articles

Is your business website outdated and look horrible on mobile devices? Are you wondering how to get a responsive manufacturing website built? Do you wish you could build a website or blog without hiring a developer or working with the IT department? I created a collection of HubSpot website templates. It contains website templates, landing […]

Continue Reading

HubSpot Theme Sections Explained: How to Create HubSpot Saved Sections [video]

Category: Articles

Learn how to use HubSpot CMS saved sections to help marketers quickly build website pages inside their HubSpot theme. You can now choose from section grid layouts or preconfigured sections provided by the theme developer. Reusable sections are drag-and-drop templates that can be saved for use by the HubSpot theme. Developers can create reusable sections. […]

Continue Reading

The 10 Best HubSpot Themes & Templates for Professional B2B Websites (Free & Premium)

Category: Articles

Choosing the right theme for your HubSpot website can be overwhelming, given the wide range of options available in the HubSpot Theme Marketplace. To help you make the best decision, we’ve compiled a list of 10 outstanding HubSpot themes that cater to various business needs. These themes not only streamline the design process but also […]

Continue Reading

The Top 5 HubSpot CMS Benefits and Advantages vs WordPress – HubSpot CMS Review

Category: Articles

As a website designer and developer, I have built themes for various content management systems. The biggest is WordPress. For the past six years, I have been building templates for HubSpot and I have seen some great advantages which alleviate the major pain points of building WordPress sites. Below is my list of five benefits […]

Continue Reading

Website Templates for Industrial Manufacturers Added to the HubSpot Asset Marketplace – Video

Category: Press Releases

Jacob Lett of Bootstrap Creative designed a website theme for manufacturing businesses to promote their brand and products online using the HubSpot CMS. DETROIT (PRWEB) JANUARY 07, 2021 When strategic marketing consultant and website designer Jacob Lett entered HubSpot’s first-ever Themes Challenge hackathon, his vision was to design a website theme specifically to help manufacturers increase […]

Continue Reading

What are the Best Image Size Dimensions for Responsive Web Design?

Category: Common Questions

When building image carousels, jumbotrons, or full background sections you will often need to properly size an image. Below are some recommendations based on the most common device screen sizes and if you are using parallax or fixed background images. Desktop (1920×1080) 2000px x 360px, 4000px x 720px (retina) Parallax (images need to be as […]

Continue Reading

WooCommerce Product Category and Terms Select Filters [code snippet]

Category: Code Snippets

The code below will help you add a form select filter for Woocommerce online shop on WordPress. <?php $categories = get_terms( [‘taxonomy’ => ‘product_cat’, ‘hide_empty’ => true] ); ?> <div class=”product-categories”> <h3>Categories</h3> <select class=”form-control shop-filter” onchange=”location = this.value;”> <option selected value=”/shop/”>All</option> <?php foreach ( $categories as $category ) { ?> <option value=”<?php echo get_term_link( $category->term_id […]

Continue Reading

Scale Up and Crop an Image WordPress [code snippet]

Category: Code Snippets

In WordPress you may need to increase the size of all thumbnails but WordPress does not res up the images to prevent distortion. Using the method outlined in this example you can use object-fit to make undersized images fit your desired aspect ratio. .img-crop__polyfill image is sized to the desired dimensions. This will help keep […]

Continue Reading

HubSpot Themes vs Templates – What is the Difference?

Category: Common Questions

Previously it was possible to download HubSpot template packs from the HubSpot marketplace. These were a collection of landing page, website page, blog, and email templates. The downside of these packs is they did not share any unified settings and they were not very portable between accounts. Now a group of templates, custom modules, and […]

Continue Reading