Posts Categorized: Common Questions
Posts that provide concise answers to common Bootstrap CSS and web development questions.
Does HubSpot CMS use Bootstrap?
HubSpot does not use Bootstrap as-is for their CMS and grid system. Instead, its default 12 column grid system and class naming is based on the Bootstrap 2 grid system, but the actual code is different. Here is what the default HubSpot layout.css file looks like. HubSpot 2 column grid (Bootstrap 2) div structure example
1 2 3 4 5 6 7 8 | <div class="row-fluid "> <div class="span6"> Column 1 content </div> <div class="span6"> Column 2 content </div> </div> |
So can I… Read more »
Category: Common Questions
How to Choose Marketing Automation Software for Your Business
Are you in the market for a marketing automation tool for your business? There are a lot of options to choose from. Below are some pro’s and con’s of some of the bigger names to help you narrow down your decision. Small Market Mid Market Enterprise ActiveCampaign HubSpot Drip Mailchimp ConvertKit ActiveCampaign HubSpot Marketo Klaviyo… Read more »
Category: Common Questions
According to HubSpot, What is the First Stage Action of Inbound Marketing?
Attract: drawing in the right people with valuable content and conversations that establish you as a trusted advisor with whom they want to engage. Learn more about Inbound Marketing methodology.
Category: Common Questions
Where can you view all of your downloaded HubSpot templates and modules?
If you download a HubSpot theme or module from their marketplace there is a spot for you to manage these assets. You can update them, reinstall, or write a review. Below are two ways to find this purchase management panel Option 1 – HubSpot Asset Marketplace Homepage Visit the HubSpot marketplace homepage and click the… Read more »
Category: Common Questions
Would you recommend switching your website from WordPress CMS to HubSpot CMS?
If you answer yes to a lot of the questions below, I would consider HubSpot CMS. Is your site mostly public-facing content and nothing needs to be private or require high levels of secure access? Do you have a global team of marketing and sales? Do you need to translate content? Do you need the… Read more »
Category: Common Questions
What are the Best Image Size Dimensions for Responsive Web Design?
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… Read more »
Category: Common Questions
How Do You Change the Primary Domain in HubSpot CMS?
If you are looking to rebrand your website and change its domain there are a few steps you can take. You will most likely land on this HubSpot knowledge base article which outlines the steps but if you read it quickly you might miss a critical piece of information. At the very bottom there is… Read more »
Category: Common Questions
How to Fix HubSpot Website Your Connection is Not Private Error in Chrome & Safari
HubSpot requires using CNAME to point a domain to their server using a subdomain. This means you still have an A record to worry about. The www in your www.yourdomain.com is a subdomain and not root domain that does not have the www. It is the same as blog.yourdomain.com or mail.yourdomain.com. In order to fix this,… Read more »
Category: Common Questions
How to Have a HubSpot Menu Load the Default Menu When Transferring to Another Account
Problem: When transferring a HubSpot theme or template file to another portal global module’s menu disappears. The code snippet below sets the default menu tag to pull a default if it is not selected.
1 2 | {% set menu = module.menu is truthy ? menu(module.menu) : menu('default') %} {% menu "menu" %} |
Category: Common Questions
How Do You Convert Text to Outline Shapes in Adobe XD?
If you are wanting to export a text based graphic icon or text symbol it is a good idea to convert it to outlines before exporting. If you don’t, when you embed the svg it will be looking for the web font being used and not look right. Select the text box containing the graphic… Read more »
Category: Common Questions