Reduce Margin Under Title On Product Page

Solved

Reduce Margin Under Title On Product Page

john98837
Visitor
2 0 1

john98837_0-1744708926351.png

On my product page I am trying to reduce the space between the title and the sub title.  The sub title was added using a liquid code as the text box was not giving me much to work with in terms of font size.  This is on the dawn theme.  Any help would be appreciated.

Accepted Solution (1)

tim
Shopify Partner
4274 488 1572

This is an accepted solution.

Something like this into "Custom CSS' setting on the section:

.product__title {
  margin-bottom: -5px;
}

By default it's 15px. 

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com

View solution in original post

Replies 2 (2)

tim
Shopify Partner
4274 488 1572

This is an accepted solution.

Something like this into "Custom CSS' setting on the section:

.product__title {
  margin-bottom: -5px;
}

By default it's 15px. 

If my post is helpful, consider liking it -- it will help others with similar problem to find a solution.
I can be reached via e-mail tairli@yahoo.com
john98837
Visitor
2 0 1

That worked perfectly, thank you very much!