Some problems with diffrent things
-
First 2 problems are with the drop-down menu in primary location
The fill color has round corners (See image linked), is there a way to make it not have round corners?, and/or maybe have the white background have corners?
https://www.dropbox.com/s/py98d28udjfa70g/Website_Dropdown.JPG?dl=0Theres an empty space between the drop-down “button” and the actually drop-down which is extremely annoying, is there a way to fix this?? (See gif linked)
https://media.giphy.com/media/jH0lMkwnyb7mIhO2FR/giphy.gifSecond
is there a way to change the color of the icons and text in the footer (See image linked)
https://www.dropbox.com/s/3b7fi52fj8263l4/Website_FooterTextColor.JPG?dl=0Many thanks inadvance, Mark
-
This topic was modified 7 years, 9 months ago by
markaabo.
-
This topic was modified 7 years, 9 months ago by
-
Hi Mark (@markaabo),
You can try the following CSS
/* For Dropdown */
.dropdown-menu > li:first-child > a:hover, .dropdown-menu > li:first-child > a:focus{
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}.dropdown-menu > li:last-child > a:hover, .dropdown-menu > li:last-child > a:focus{
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
}.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus{
border-radius: 0;
}.dropdown-menu li:last-child{
border-bottom: 0;
}/* To Remove Padding between Menu and Dropdown */
header.menu-wrapper nav ul li a{
padding-bottom: 0;
}Copy the above CSS and paste it in Appearance -> Customize -> Additional CSS
For Second query, You can go to Appearance -> Customize -> Footer Settings and then from the option Footer Links Color You can change the color.
Best Regards
Almost all of it worked
The footer color i already tried but i found out that if i use google chrome it doesn’t update all the edits i do in “customize” but it does edit and save just need to refresh or use firefox, but still thanks 🙂
The remove padding between menu and dropdown, made the gap a little smaller but its still there, is there something else that could maybe cause it?
Kind regards Mark
Also noticed footer copyright text says that HTML is allowed but it doesn’t work nothing HTML inputted in the copyright footer text works it just display directly the raw text
Hi Mark,
Writing down few more lines of CSS that will eliminate the dropdown margin. Hope this would help.
.dropdown-menu{
margin:0;
}Yes, you can’t add HTML code there because of the data sanitization. We will change the text in our next theme update. Sorry for that confusion.
Best Regards
The topic ‘Some problems with diffrent things’ is closed to new replies.
