Hi,
I tried to remove part of the HTML code that resides in Joomla wrapper published as menu item.
I used
online regexp testing tool to test my regular expression and it seems that I finally create one that removes HTML that I would want.
When I put that regular expression in ReReplacer, nothing happens.
Here is the part of the HTML code that I would like to remove:
<div id="header">
<div id="header-inner" class="page">
<h1 id="title"><a href="http://www.streetsofchina.com" title="Streets of China"><img class="screenOnly" src="images/header-title.png" width="335" height="60" alt="Streets of China"></a><div class="printOnly"><img src="images/header-title-print.jpg" width="335" height="60" alt=""></div></h1>
<h2 id="tagline">The free Chinese address translation tool</h2>
<div id="description">
<p class="justify">Looking to translate a Shanghai address from English/Pinyin into Chinese, then you've come to the right place. Streets of China is a free service to translate Shanghai street/road names and addresses from pinyin into Chinese. </p>
<p>
<span class="benefits">» Quick & Easy to use</span>
<span class="benefit-spacer"></span>
<span class="benefits">» No Chinese skills required</span>
<span class="benefit-spacer"></span>
<span class="benefits">» Totally Free!</span>
</p>
</div>
</div>
</div>
and here is the regular expression that removes it in online tool successfully:
<div id="header">.*?<div id="header-inner" class="page">.*?<h1 id="title">.*?</h1>.*?<div id="description">.*?</div>.*?</div>.*?</div>
My questions are:
1. is it possible to remove HTML in Joomla wrapper
2. would it be possible to take a look at my web site (I can provide backend access) and help me to solve this issue
Thank you very much in advance!