ah hello. can i ask how we can use this in wordpress? i use impreza template for my website and i make a menu in header part but there is no option for adding vertical line and i don't know what is the class of this option before adding css code.
WordPress themes have style.css in the root folder of theme. You can add the line code in that file. WordPress theme's menu structure is like ul-li . Mostly li class name is menu-item. You can add vertical line using li class name.
So is there anyway to do this within CSS and not inside the HTML? I prefer to style things using CSS.
Yes you can do this in separate css file and link it into HTML
ah hello. can i ask how we can use this in wordpress? i use impreza template for my website and i make a menu in header part but there is no option for adding vertical line and i don't know what is the class of this option before adding css code.
WordPress themes have style.css in the root folder of theme. You can add the line code in that file. WordPress theme's menu structure is like ul-li . Mostly li class name is menu-item. You can add vertical line using li class name.