Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My problem is that when trying to insert some kind of a background image in Shopify, it never shows anything.

I have a navigation bar that has a pattern which the client wants and when I try to enable it, again nothing happens.

The code I'm using on that css background line (from googling around) is

background:url( "{{'navBggreen.jpg' | asset_url }}")

I've also tried

background:url( {{'navBggreen.jpg' | asset_url }} )

and nothing. Tutorials or any kind of documentation is extremely scarce for Shopify so....

Anyways, anyone know how to get these working?

Thanks in advanced.

share|improve this question

1 Answer

if you want to include images in your layout you will have to use the asset_url filter. However, if your images are called via a CSS stylesheet then you do not need to use asset_url - except if they are used in a theme settings form. Take out the asset_url and it should work ok.

share|improve this answer
Hello thanks for the reply, so if am calling it via CSS external stylesheet(which i am) then how do i call to it? Thanks in advanced – somdow Dec 14 '12 at 15:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.