CSS background images in WordPress

前端 未结 14 1837
长情又很酷
长情又很酷 2020-12-09 03:44

Is it possible to get a background image in CSS like you normally do in HTML when working with WordPress. I\'ve tried doing this but it doesn\'t work.

backgr         


        
14条回答
  •  失恋的感觉
    2020-12-09 04:27

    You don't need to use PHP in this question, your CSS file is already in template folder, so you can call image just like this:

    background-image: url("images/parallax_image.jpg");
    

    So you don't need to know template path to call images from your theme.

提交回复
热议问题