如标题所述,我的网站的背景图片没有出现。我对wordpress很陌生。我已经设法让 HTML 文件中的普通图像出现<img src="<?php echo get_bloginfo('template_url');?>/images/image01.jpg" alt="image description" width="1269" height="441" />
,但由于某种原因,我的 CSS 中的所有图像都不会出现。我在尝试解决这个问题时做了一些研究,最常见的答案是像这样格式化 css:
.logo{
background:url("/images/logo.png") no-repeat; }
但这不起作用。
任何帮助将不胜感激。
在此先感谢,汤姆
编辑:链接到header.php
文件中的 stye.css:
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />