Add a static image on PHTML page and CMS Blocks : Magento2

image url Syntax is ok for both static block and phtml, But make sure that when you write this code in static block

on front end it looks like

http://localhost/magento2new/pub/static/frontend/Magento/luma/en_US/images/slide-bg.jpg

Where Magento/luma is package name and theme name, you can replace with your package and theme name

So you have to take care for slide-bg.jpg is exist in

pub/static/frontend/Magento/luma/en_US/images directory.

In your case,

Syntax seems ok , but in frontend It looks like

http://localhost/magento2new/pub/static/frontend/Magento/luma/en_US/images/footer-logo.png

So you have to make sure that footer-logo.png exist in

pub/static/frontend/Magento/luma/en_US/images directory.

And don’t forgot about "[quotation marks]

In CSS:

background: url('{{view url="images/menu-button-of-three-lines.svg"}}');

Leave a Reply

Your email address will not be published. Required fields are marked *