Header postioning

Hi all I am looking to move the text header slightly higher using custom CSS for just this page Pro-Erex for Men the text in question is the white text that states “Mens Pro Erex TM. any help is appreciated thanks.

Hi there! Yes, I can help you move the header text higher on that specific product page. Just let me know the product URL or a screenshot of the header section, and I’ll provide the exact custom CSS you need. Happy to help!

1 Like

In this section settings find “Custom CSS”.
Add this code

.content-container {
  padding-top: 1rem; /* default is 4rem */
}

Looks like you already have this in Custom CSS

.content-container {
    margin-bottom: 5em;
}

So you can combine:

.content-container {
  margin-bottom: 5em;
  padding-top: 1rem; /* default is 4rem */
}
1 Like

You can move that header text up on just one product page by targeting its unique template or handle with custom CSS.

Try something like:

.template-product–pro-erex-for-men .product__title {

margin-top: -20px;

}

If your theme uses a different wrapper, inspect the element and replace the class accordingly.

This only affects that single page and won’t touch the rest of your site.

Once your layout looks clean, tools like CatWalkCraft AI can help you generate consistent product visuals so your page looks polished overall.

If you want, I can check your theme code and give you the exact selector.

1 Like