HI, on the site there is a background image in the header, but when I go general styling, there are no image selected…
The main menu has a / in front of each page name, how do I delete the /.
Hi Alan,
Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.
Best regards,
Rikard
Hi,
The CSS for that is located in the file in private, please change it there.
.html_header_top.html_bottom_nav_header #header_main {
background-image: url(PICTURE URL) !important;
padding: 2rem 10px 3rem !important;
}
Best regards,
Rikard
Hi, thanks,
How do I delete this image?
I would like to be able to insert an image from
I have an Issue with the main menu as well
The main menu has a / in front of each page name, how do I delete the /.
Hi,
You can remove the CSS I referred to in order to remove the image.
The / is added with this CSS in your child theme:
.main_menu ul li:before {
content: " / ";
display: inline-block;
margin-right: 8px;
position: absolute;
left: 0;
top: 10px;
text-align: center;
}
You can remove this line if you want to keep the rest of the CSS:
content: " / ";
Best regards,
Rikard
Hi Rikard
The “/” are still there, I need to delete them, how is that done
Alan ;)