Difference between revisions of "Wordpress Extra Theme Hide Arrow in Drop Down Menu"

From Tech Wiki
Jump to navigation Jump to search
(Created page with "'''To hide the arrow in the drop-down menu of the Extra theme in Wordpress follow the below:''' Login to Wordpress Admin Then click Extra and then Theme Options Scroll down...")
 
 
Line 6: Line 6:
  
 
Scroll down to the bottom and the enter the below under  '''custom.css'''
 
Scroll down to the bottom and the enter the below under  '''custom.css'''
 
  
 
<pre>
 
<pre>

Latest revision as of 22:11, 15 January 2019

To hide the arrow in the drop-down menu of the Extra theme in Wordpress follow the below:

Login to Wordpress Admin

Then click Extra and then Theme Options

Scroll down to the bottom and the enter the below under custom.css

header.header li.menu-item-has-children>a:after {
	display: none;	
}

#et-navigation>ul>li.menu-item-has-children>a:before {
	width: 100%;
}