Hey there red2design,
How are you doing today?
This should be possible with some custom CSS, I’ve checked your site and navigation that has dropdown has right padding which you can reduce in order to remove that gap.
To do that please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://ww.wp.xz.cn/plugins/simple-custom-css
.menu-item-has-children > a {
padding-right: 48px;
}
This should be the original padding, reduce the value to what ever suits you the most 🙂
Hope this helps 🙂
Cheers,
Bojan
Hi Bojan
Yes that has worked, many thanks.
I’m now being asked to reduced the width of the drop down boxes. Can I be cheeky and ask if you know where that is? Or maybe I need to start a new thread?
Again, thank you. Deb
Hey Deb,
Awesome! Generally you’d want to open another thread but since you already asked here I’ll respond as well 🙂
There is width defined on the submenu links which is giving the whole submenu it’s width. This can be changed with custom CSS as well so please try adding the following:
@media screen and (min-width: 1020px) {
.main-navigation ul ul a {
width: 300px;
}
}
This is the original width so you can reduce the value to what ever suits you the most 🙂
Cheers,
Bojan