Hello,
Would be grateful if someone could help me with the below,
I want to make ( Eyes + Face ) unclickable & Bold (as seen below)
I want to make ( Lips ) bold.
Any help/guidance is appreciated!
Hello,
Would be grateful if someone could help me with the below,
I want to make ( Eyes + Face ) unclickable & Bold (as seen below)
I want to make ( Lips ) bold.
Any help/guidance is appreciated!
Hi,
Which Mega Menu are you using?
Hello,
The task can be done through custom CSS, targeting the element by its link.
Your solution is probably something similar to the below CSS:
a[href="TheTargetedLink"]
{
pointer-events:none;
}
Where TheTargetedLink is the target of your anchor.
Unfortunately, I can’t give an exact answer as I haven’t seen your website structure yet.
But I can assume.
As a reference, assuming that you want to make the Lips navigation menu text bold, and that this is part of the URL, you can make use of a similar code to the below:
nav a[href*="lips"] {
font-weight:bold !important;
}
Note that !important is used to ensure that this style overwrites the previous style.
Let me know if the above is relevant to your inquiry. If further assistance is required, please share your website link.
Cheers!
Gabriel
Hi @GabrielS
Thank you for the above, however, I’m not really sure how to proceed so if you could please provide me a step by step.
here’s the website https://cosmoholics.store
Let me know if you need anything else from my side.
Firstly, duplicate your theme to ensure that you are having a backup - in case things goes south.
If you want to play around, you can get started by adding the below code at the end of your base.css file.
.mega-menu__link--level-2:not(:only-child) {
color: red !important;
font-weight: bold !important;
}
Applying the above CSS code would result the following preview:
Let me know if the above is relevant to your inquiry.
PS: For custom edits, I’d suggest to get in touch with a web developer.
Cheers!
Hi @GabrielS
Please ignore the above, I’ve managed to make it work.
Thank you so much!
I was wondering if you could also assist me with a breadcrumb related inquiry ?