Wordpress, using Avada theme with Fusion Builder. There are these bullet points appearing on the left of the homepage, when I inspect element it shows me the following:
"fusion-main-menu fusion-sticky-menu"
"Main Menu Sticky"
"fusion-mobile-menu"
Tried to edit on WP under these categories but still can't fix it.
Any way of fixing it so this menu dissapears?
Either CSS either from WP Settings?
Website is https://dev1.bachelona.com/
so you can see what I'm talking about on the page.
A million thanks xx
You can apply following CSS to fix the issue:
ul {
list-style-type: none;
}
Related
I am making my website in wordpress using astra theme. I have there 2 pages present, https://petrmacholan.cz/ and https://petrmacholan.cz/blog/ . Any of the pages I create on this website in present I would like my navigation menu hidden. How do I do that? What should I write in my css code to make it that way? Thanks in advance
You can try
#main-menu {
display: none;
}
I migrated my WP website to another domain, I am using an animation I made on Animate CC and used and Iframe to placed it. I am working with DIVI and Elementor.
Now, when I click from the animation, I get a double nav bar and I have no idea why. But when I go from the menu, everything is fine.
Does someone know how to fix this? I have tried uninstalling and reinstalling DIVI, elementor and other plugins but nothing works. I have also changed the links of the animation.
This is the website:
https://psychotherapie-couple-famille-lausanne.ch/accueil/
I appreciate any help, thank you in advance.
Because you are loading that page in an iframe.
for example, by clicking an image it opened this page https://psychotherapie-couple-famille-lausanne.ch/therapies/therapie-individuelle/ in iframe.
Edit that page and hide header for that page from divi settings or put this CSS code for that page. you will see custom css option on that page.
div#page-container {
padding-top: 0px !important;
}
header#main-header {
display: none;
}
I've tried searching the forums about this but I can't find something that works in my case.
I'm using elementor with Wordpress and Astra themes. For some reason suddenly the dropdown menu disappears fast when you try and click the menus. The dropdown menu also goes behind the pictures on some of the pages (not the front page). I have not edited anything about the menu and I have no idea how it happened.
Here it shows what I mean with the menu going behind the pictures
It does not do this on the front page.
The website is https://www.onebag.dk/
Does anybody know how I fix this?
The top elementor HTML element...
<div data-elementor-type="product-archive" data-elementor-id="589"
class="elementor elementor-589 elementor-location-archive product" data-
elementor-settings="[]">
... is positioned relatively but has no z-index set.
If you set the z-index below 9999 (the index of the submenu) it works. I think you can use this css in the custom css section of your theme:
div.elementor {
z-index: 99;
}
Maybe this is a bug in the theme, or it is a conflict between theme and a plugin.
I used this custom CSS to fix the problem:
#masthead {
z-index:99999
}
#content {
z-index: 0;
}
Basicly, made index of header higher than contents index and worked.
I've searched around for a good while now trying to find a solution for this issue, but haven't seen anyone else experiencing it so far.
I have a WooCommerce store I'm working on developing, and recently noticed that the select field for the billing state is displaying list-style type bullets in front of the options when expanded.
I've messed around in the CSS including removing any background image and making sure there was no list-style attribute applied to the options, but I'm stuck on as to what's happening here.
The issue can be viewed live at this link: http://grahams.staging.wpengine.com/donate/
Does anyone have any ideas on what could be causing this? My guess is it's somewhere in the woocommerce files but I'm unsure as to where I would start looking.
List of Woo Extensions:
One Page Checkout
Name Your Price
WooCommerce Subscriptions
WooCommerce Variation
Swatches and Photos
Other than the above, no customizations have been made. Theme being used is Hybrid.
EDIT: adding an image for those who can't load it/are looking after it's been resolved.
Inspecting your CSS, there is a background image being applied to all ul li elements. See _elements.scss, line 96.
ul li { background: url(images/build/bullet.png) no-repeat 0 6px; }
Adding the following style fixes the issue.
.select2-results__option { background-image: none; }
When we load site www.cligest.com made with WordPress the menu links and the dropdown options on the web initial page, the frontpage ("home") don't work. They just work in all other pages except "home".
I've tried 15 different solutions, with no luck.
Try adding the following css:
nav ul.main-menu {
z-index: 10;
}
This occurs because you have a div on top of the menu. It only happens on the homepage because that div or .homepage-section only exists on the homepage.
Try adding this to your CSS sheet and see if it makes any difference. It should bring your menu on top.
.main-menu {z-index: 2}