that nothing gets saved.
for example I need to add another Div just like below
Code: Select all
<!-- I have added headerbackground in css also -->
<div id="headerBackground">
<div id="headercontainer">
<div id="header">
<div class="div1">
<div class="div2"><a href="<?php echo $home; ?>"><img src="<?php echo $logo; ?>" title="<?php echo $store; ?>" alt="<?php echo $store; ?>" /></a></div>
<div class="div3"><?php echo $language; ?><?php echo $search; ?></div>
</div>
<div class="div4">
<div class="div5"><img src="catalog/view/theme/default/image/icon_home.png" alt="" class="icon" /><a href="<?php echo $home; ?>"><?php echo $text_home; ?></a><img src="catalog/view/theme/default/image/split.png" alt="" class="split" /><img src="catalog/view/theme/default/image/icon_special.png" alt="" class="icon" /><a href="<?php echo $special; ?>"><?php echo $text_special; ?></a>
<?php if (!$logged) { ?>
<img src="catalog/view/theme/default/image/split.png" alt="" class="split" /><img src="catalog/view/theme/default/image/icon_login.png" alt="" class="icon" /><a href="<?php echo $login; ?>"><?php echo $text_login; ?></a>
<?php } else { ?>
<img src="catalog/view/theme/default/image/split.png" alt="" class="split" /><img src="catalog/view/theme/default/image/icon_logout.png" alt="" class="icon" /><a href="<?php echo $logout; ?>"><?php echo $text_logout; ?></a>
<?php } ?>
<img src="catalog/view/theme/default/image/split.png" alt="" class="split" /><img src="catalog/view/theme/default/image/icon_account.png" alt="" class="icon" /><a href="<?php echo $account; ?>"><?php echo $text_account; ?></a></div>
<div class="div6"><a href="<?php echo $checkout; ?>"><?php echo $text_checkout; ?></a><img src="catalog/view/theme/default/image/icon_checkout.png" alt="" class="icon" /><img src="catalog/view/theme/default/image/split.png" alt="" class="split" /><a href="<?php echo $cart; ?>"><?php echo $text_cart; ?></a><img src="catalog/view/theme/default/image/icon_basket.png" alt="" class="icon" /></div>
</div>
<div id="breadcrumb">
<?php foreach ($breadcrumbs as $breadcrumb) { ?>
<?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a>
<?php } ?>
</div>
</div>
</div>
</div>
<!-- here is the closing tag for my Div -->
and whenever I upload the file on the server .. when I open the site there is no changes .. when I chick on view source I see that the <div id="headerBackground"> that i added is missing ....
I have tryed many time and I am sure it's not because of caching ....
any ideas???