cancel
Showing results for 
Search instead for 
Did you mean: 

Pop-up when stock is lower then customer wants

Pop-up when stock is lower then customer wants

Can someone help how to remove image logo from newsletter popup and replace my own logo in my newsletter popup and also print page after customer checkout still got template logo image  there .

newletter pop up.png

Screenshot_55.png

1 REPLY 1

Re: Pop-up when stock is lower then customer wants

I guess it's not image logo, it looks like text. Take a look at following two divs:

<div class="newsletter-title">...</div>
<div class="newsletter-slogan">...</div>

This probably represents the place where it's generated. You can change it by finding where it is generated (probably somewhere in Magento Admin), or change it directly. If you want to use any kind of image, you can put it directly as (for example):

<?php $imgLogo = Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA) . "/logo.jpg"; ?>
<div class="newsletter-title"><img src="<?php echo $imgLogo ?>" class="imgLogo" /></div>

Then you should modify your CSS in order to fit image properly. Or you can just change text, without any other modifications, something like:

<div class="newsletter-title">My new title</div>
<div class="newsletter-slogan">My new slogan</div>

 

If this response was helpful to you, consider giving kudos to this post.
If this response solved your problem, click accept as solution to help others solve this issue