/* Banner on Browse Products page */ h1.text-2xl.font-semibold.self-start.row-auto.col-span-full { position: relative; /* Required for absolute positioning */ } h1.text-2xl.font-semibold.self-start.row-auto.col-span-full::before { content: ""; display: block; background-image: url('https://uploads.teachablecdn.com/attachments/44UotEvTKa3n6Wlvq8aW__Bold+Lettering+Tumblr+Banner.png'); background-size: contain; /* Ensures the whole image fits within the banner */ background-position: center; /* Centers the image */ background-repeat: no-repeat; /* Prevents tiling */ height: 200px; /* Adjust the height based on your image's aspect ratio */ margin-top: 10px; /* Adds spacing if necessary */ }