I want to remove a page title, and lower the position of products in product page. DAWN THEME!

I use dawn theme!

Okay so, yesterday I made my homepage main menu transparent and removed all the page titles by editing the code, however one stayed, and I’d like to remove it. How do I do it? I want that “Products” gone.

Also after editing the code I noticed that if I click on a product at my page, it will show up like this: (Is there a way to make it show up lower so it won’t overlap with anything and will look clean?) Maybe like if the title was well enough below the separator line..

Please help, I just managed to make my store finally look crisp and then noticed this

I managed to fix the problem with the second image, the first one still remains!

Also does editing the code have affet the SEO

hi @XplorationS

Can you share your store URL? then I can review it

(REMOVED)

@XplorationS

Add this code at the bottom of Theme > edit code > assets > base.css file

.collection-hero__text-wrapper {
		display: none !important;	
}

Try it an let me know

1 Like

Hi @XplorationS

If you only want to make the header transparent for only home page.
You can try to follow this image and add the code

{% if request.page_type == 'index' %} header__transparent {% endif %}

Then the custom code, that you added to make the transparent header, you only need to replace

.header-wrapper by .header__transparent

Thanks!

@XplorationS You are welcome