Link to home
Start Free TrialLog in
Avatar of jonathanduane2010
jonathanduane2010

asked on

removing text from homepage

Hi Guys,

I was wondering what is the quickest way to remove the text "My Account" and "checkout" from my page

you can see it here at http://iradionortheast.com

i have tried css and the header.php

thanks guys
Avatar of Peter Hutchison
Peter Hutchison
Flag of United Kingdom of Great Britain and Northern Ireland image

Remove the following lines from the web pages (approx lines 71-72):

<li id="menu-item-191" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-191"><a href="http://iradionortheast.com/my-account/">My Account</a></li>
<li id="menu-item-193" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-193"><a href="http://iradionortheast.com/checkout/">Checkout</a></li>
Avatar of jonathanduane2010
jonathanduane2010

ASKER

thank you, but where do i remove them?

Its a wordpress site
is it ok if you just hide it by using css?
something like:

#menu-item-191 { display: none; }
#menu-item-193 { display: none; }

Open in new window


Hope it helps.
ASKER CERTIFIED SOLUTION
Avatar of gplana
gplana
Flag of Spain image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
yes, thats great thank you