andstr 88 Posted May 15, 2014 Report Share Posted May 15, 2014 у меня есть слайдер на сайте. В 1ом случае картинка идет с другого сайта (отображается) #slides .prev { background: url("http://********.css.1c-bitrix-cdn.ru/bitrix/templates/mytemplate/images/prev-button.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); height: 37px; left: 23px; position: absolute; top: 174px; width: 34px; z-index: 10; } Во втором случае картина лежит у меня в папке с шаблоном (не отображается) #slides .next { background: url("{THEME} /images/prev-button.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); height: 37px; position: absolute; right: 33px; top: 174px; width: 34px; z-index: 10; Это 2 стрелочки вперед - назад Что я неправильно делаю во втором случае? Link to post Share on other sites
Macdec 139 Posted May 15, 2014 Report Share Posted May 15, 2014 Скиньте сайт в личку Link to post Share on other sites
Neuron 304 Posted May 15, 2014 Report Share Posted May 15, 2014 #slides .next {background: url("{THEME} /images/prev-button.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);height: 37px;position: absolute;right: 33px;top: 174px;width: 34px;z-index: 10; Это разве работать будет? ("{THEME} /images/prev-button.png") Попробуйте вот так: ("../images/prev-button.png") andstr 1 Link to post Share on other sites
andstr 88 Posted May 15, 2014 Author Report Share Posted May 15, 2014 #slides .next { background: url("{THEME} /images/prev-button.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); height: 37px; position: absolute; right: 33px; top: 174px; width: 34px; z-index: 10; Это разве работать будет? ("{THEME} /images/prev-button.png") Попробуйте вот так: ("../images/prev-button.png") Да уже сам додумался спасибо, после армии все забыл Link to post Share on other sites
andstr 88 Posted May 15, 2014 Author Report Share Posted May 15, 2014 Скиньте сайт в личку Сайт пока что на денвере Link to post Share on other sites
fanl2 14 Posted May 15, 2014 Report Share Posted May 15, 2014 #slides .next { background: url("{THEME} /images/prev-button.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); height: 37px; position: absolute; right: 33px; top: 174px; width: 34px; z-index: 10; Это разве работать будет? ("{THEME} /images/prev-button.png") Попробуйте вот так: ("../images/prev-button.png") Это будет работать, если убрать лишний проблем после {THEME} Link to post Share on other sites
andstr 88 Posted May 15, 2014 Author Report Share Posted May 15, 2014 Это будет работать, если убрать лишний проблем после {THEME} в htm так работает у меня только Link to post Share on other sites
Macdec 139 Posted May 15, 2014 Report Share Posted May 15, 2014 Тогда... Указывайте.... background: url("images/prev-button.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); Это если стили лежат в одной папке где папка с картинками... если папка с картинками лежит выше стилей, то... background: url("..images/prev-button.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); Перед images ставим две точки... Link to post Share on other sites
andstr 88 Posted May 15, 2014 Author Report Share Posted May 15, 2014 всем спасибо разобрался тему можно закрывать Link to post Share on other sites
Recommended Posts