How can I modify my sidebar menu design in Prestige theme?

Topic summary

A Prestige theme user seeks help modifying their sidebar menu design, specifically wanting to change vertically-oriented collection names to horizontal layout. They also mention an issue with \

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

Hi. I would like to change something in my sidebar menu design, but I don’t know how. A little assistance would be greatly appreciated. All of the names in my store are on the vertical side (photo 3), and I’d like them to be on the horizontal side (photo 2). I will take photos. Also, I’m not sure why the same thing appears under “Product Options” (Style in my store), but with a price attached. How do I get rid of it? My theme is prestige.

@Matteo96
Hello,
Can You Please Share Your Store URL…

1 Like

https://anime-crush.com

@Matteo96
Hello,
I have Checked Your Store

.Linklist__Item {
	width: 33%;
	float: left;
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

Like This

1 Like

Thank you very much for your help.

I did exactly as you told me, but my list doesn’t look like your picture.

@Matteo96
Hello,

.DropdownMenu {
	min-width: 50%;
}

.dropdownMenu .Linklist__Item {
	float: left;
	width: 33%;
}

Add this CSS at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid

1 Like

All good now. Thank you.