Link to home
Start Free TrialLog in
Avatar of Alan Henderson
Alan HendersonFlag for New Zealand

asked on

How to edit HTML in a Drupal web page?

I have a Drupal test site with a problem on the front (home) page.
There's a sticky page node in the content of the page titled "Our Mission" - see here:
http://at.mywitsend.co.nz/

Between that page and the primary links on the header is a mystery empty div which has somehow been created along with the "Our Mission" page:

<div class="mission">
<br />
</div>

That div inserts an empty block which you can see on the page. Problem is, I have no idea how to edit the actual HTML to get rid of it.

Help!



SOLUTION
Avatar of Amanda Watson
Amanda Watson
Flag of Australia 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
ASKER CERTIFIED SOLUTION
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
Avatar of Alan Henderson

ASKER

Thank you both!

The offending code I removed was:
           <?php if ($is_front && $mission): ?>
             <div class="mission"><?php print $mission; ?></div>
           <?php endif; ?>
 
 Problem fixed.
 
 :o)