Move Recently viewed up 20px Desktop

Topic summary

A user wants to move the \

Summarized with AI on November 8. AI used: claude-sonnet-4-5-20250929.

Hi,

I’d like to move the recently viewed section on desktop up 20px. my site is https://luxurymrkt.com/collections/ets-fs-best-selling-products/products/off-white-doormat-with-logo

@Luxurymrkt , You can follow these steps:

Step 1: Go to Admin → Online store → Theme > Edit code

Step 2: Search for the file theme.css and find this css code below:

@media screen and (min-width: 767px) {
.section-header__title {
  font-size: 22px;
}

Step 3: Now, the font-size is “22px”. Change font-size, increase it to 32px, 42px, 52px, … and click “save” button.

If it works, please mark my answer as solution. Tks.

@Luxurymrkt , ahh, sorry. I misunderstood your question. Here, new solution:

Step 1: Go to Admin → Online store → Theme > Edit code

Step 2: Search for the file theme.css and add this css code below, in the top of file:

@media screen and (min-width: 767px) {
.main-content .shopify-section.index-section {
    margin-bottom: 35px !important;
}
}

If you want it even higher, reduce the margin-bottom further.