Hello Sheona,
To make the change you want you can achieve this using custom css. Please add the following custom css to your site via either a child theme or directly from the theme options panel under General Settings -> Custom CSS:
.main-navigation ul ul li a {
width: 245px !important;
}
I hope the above was helpful.
Kind regards,
Manoj
That CSS will definitely do the trick, but I’d recommend using it without adding !important.
Important CSS styles basically override the normal flow of your CSS, which can make it difficult to troubleshoot things when making changes later on.
You can usually write a more specific style to avoid using !important in your custom CSS, but @phpexpert21’s should work fine without it 🙂
Thread Starter
Sheona
(@sheona)
Lovely! Thanks both for your help, worked a treat.
S