menuitem - How can I change the character displayed before each Joomla! Menu item? -


can me understand how remove characters (-> , >) added html before each joomla! 3.4.8 menu item. ~thanks![menu items in joomla website]1

to fix, modified template's responsive.css , style.css files replacing li:before rules block (aftercontent) have module in - getting rid of chevron character.

before

#block-aftercontent ul li:before {  content: "\f054"; font-family:fontawesome; font-weight:bold; color:#161616; margin-right:7px; font-size:0.7em; } 

after

#block-aftercontent ul li:before {  content: ""; } 

if know more local way of changing li:before style module, appreciate response. ~best regards


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

css - Make div keyboard-scrollable in jQuery Mobile? -

ruby on rails - Seeing duplicate requests handled with Unicorn -