Hi dextan,
This is usually related to your theme’s CSS styles. If you send me a link to a menu on your site I may be able to provide some simple CSS code to override this.
Thread Starter
dextan
(@dextan)
Hi dextan,
The following CSS code will remove the dots:
.post-content ul li:before {
content: '';
}
You’ll probably also want to clean up the margin and padding. The following CSS code should do that:
.post-content .fdm-menu,
.post-content .fdm-menu ul {
margin: 0;
}
.fdm-menu .fdm-column {
padding: 0;
}
Thread Starter
dextan
(@dextan)
You are the man!
Thanks a lot!
Is there an update to this strategy? I have li dots on my menu and the above css doesn’t seem to hide the bullets or remove the padding. Thanks!
Hi @moorezilla,
It will be different for every theme. If you can share a link to your site, I’ll take a look and see if I can provide some CSS that will work in your case.
Hi,
please have a look at the menu at
http://baecker-kaenzig.ch/wp/speisekarte/#1500545170871-a90cdde6-1a99
It’s an unpublished site, therefore you need these .htaccess credentials: baekae/baekae2017
I would like to get rid of the dots and the paddings.
The code above doesn’t work for my theme, neither in the main custom css nor in the page specific custom css.
Thank you very much,
Lukas
Hi @lhberg,
Try the following:
.wpb_text_column .fdm-menu li:before {
display: none;
}
Hi Nate
perfect, thank you very much!
Would you please be so kind as to provide me also the custom css for the margin and/or padding?
I tried the following with no results:
.wpb_text_column .fdm-menu ul {
margin: 0;
}
.wpb_text_column .fdm-menu .fdm-column {
padding: 0;
}
Kind regards,
Lukas
Hi Lukas,
Try the following:
.wpb_text_column .fdm-section {
padding-left: 0;
}