Can someone please help me remove these green nav bar triangle icons I drew a circle around so that there is nothing there? Without removing the top grey triangles in the header.
I can remove the triangles but it will remove all including the ones in the header..? how do i get around this issue?
https://clair-de-lune.co.uk/
is the above what you’re trying to get?
@codewithpaul yes!! that is what ive been trying to do!! thankyou can you share the code please?
also how did you manage to change the ‘log in to account’ in the header into an icon?
or do you want the arrow removed everywhere?
@codewithpaul no the first one you supplied mate!
So to just remove the icon there you need to add this to your css
.nav-bar__link .icon--arrow-bottom { display: none; }
As a heads up this will affect mobile and desktop unless placed in a media query.
Ah the log in to account became an icon as i imagine i triggered a media query when resizing the screen.
@codewithpaul thankyou very much mate, appreciate it!! what do you mean it will affect mobile and desktop unless placed in a media query? you mean this? ‘{ }’
Ah all i mean mate is that the change added there will be visible when someone views on their phone or someone views on desktop which is more than likely what you want.
Did the above work?