Adding Image to Footer

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
4 yıl önce
If you are on localhost then try this code.

<img src="https://shophere.co.uk/images/uploaded/paypal visa mastercard logo.jpg">
4 yıl önce
Still no show and not sure what is meant by local host? I'm new sorry.
4 yıl önce
Its a big logo so you probably want to shift it to this location between the div end and the footer lower

    </div>
    <img src="/images/uploaded/paypal%20visa%20mastercard%20logo.jpg" alt="Paypal Visa Mastercard" />
    <div class="footer-lower">

Also you need to restart the application to get it to work
Click the Gears Image then Restart Application link in the top right corner of the admin page

PS I dont like the grey text on the blue background - but thats just me :)
4 yıl önce
I'll try, you are right, I hate it, I changed the blue colour but not sure how to on the grey writing, i will change it when I find out how to.
4 yıl önce
I think you should go through some .NET tutorials first. It will help you to understand about platform. Then try follow the documentation from nopCommerce.
4 yıl önce
Still not working.
4 yıl önce
It works on my test website - See https://v42demo.selectsystems.com.au/
Make sure you use the correct link - copy and paste this
<img src="/images/uploaded/paypal%20visa%20mastercard%20logo.jpg" alt="Paypal Visa Mastercard" />
Did you restart the application ?
4 yıl önce
It worked but all of logo not showing now. Thanks so much though
4 yıl önce
Yes move it to this new location
[quote=Yidna]between the div end and the footer lower
    </div>
    <img src="/images/uploaded/paypal%20visa%20mastercard%20logo.jpg" alt="Paypal Visa Mastercard" />
    <div class="footer-lower">
4 yıl önce
That grey text is coming from this CSS

body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: #fff;
    font: normal 14px Arial,Helvetica,sans-serif;
    color: #777;
}

color: #777 is grey

You can change the hex value to another colour – but it will change other text
Otherwise you need to setup some new CSS for that footer text

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.