Jump to content
  • 0

фоновая картинка в php


sneg06
 Share

Question

Хочу отредактировать левую колонку в теме (скин) для WordPress.

Имеем код в файле sidebar-left.php

<style type="text/css">
</style><div class="dbx-group" id="sidebar-left">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(1) ) : ?>

<!--sidebox start -->
<div id="categories" class="dbx-box">

<h3 class="dbx-handle"><?php _e('Рубрики'); ?></h3>
<div class="dbx-content">
<ul>
<?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=1'); ?>
</ul>
</div>
</div>
<!--sidebox end -->

<!--sidebox start -->
<div id="archives" class="dbx-box">
<h3 class="dbx-handle"><?php _e('Архив'); ?></h3>
<div class="dbx-content">
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>
</div>
</div>
<!--sidebox end -->

<?php endif; ?>

</div><!--/sidebar-left -->

Нужно сделать фоном для этой колонки файл 1.jpg или просто добавить картинку с именем 1.jpg Может кто подскажет как это сделать, пробовал html способы - не катит, картинка не появляется. :o

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

<div class="dbx-group" id="sidebar-left">

лучше использовать вложенность id => class, а не наоборот

<style type="text/css">
.dbx-group #sidebar-left{
background: url('img/1.jpg') no-repeat; /* почитай css-мануалы по этому свойству */
}
</style>

и еще - если так и будут не появляться нужные колонки, то убери все виджеты в wordpress(по умолчанию если их нет то выводятся блоки из сайдбара)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy