I am picking up the work from one of our developers who has left our company and applied a background on our header seen here http://3.20.227.107/. When you scroll down you will see the header has a orange circle in the cop right hand side. How do I get rid of this? I see in the code it has to do with uk-navbar-container but where can I edit this within wordpress? Any help is greatly appreciated!
I am picking up the work from one of our developers who has left our company and applied a background on our header seen here http://3.20.227.107/. When you scroll down you will see the header has a orange circle in the cop right hand side. How do I get rid of this? I see in the code it has to do with uk-navbar-container but where can I edit this within wordpress? Any help is greatly appreciated!
Share Improve this question asked Apr 13, 2020 at 3:47 VisualExstasyVisualExstasy 1031 bronze badge1 Answer
Reset to default 0Because there are many ways and many possibilities for adding a image to the bar. It is really hard to tell how to remove it directly.
However, it looks like it is controlled in CSS and you could try the following.
You may try to look for a theme1.css
file and then search for .uk-navbar-container:not(.uk-navbar-transparent)
You will see
/* ... skipped here */
background-image: url(orange-circle2.svg);
/* ... skipped here */
change to
/* ... skipped here */
background-image: none; /* <--- change to none to hide the image */
/* ... skipped here */