Jump to content
  • 0

Маркеры списка


fowl
 Share

Question

9 answers to this question

Recommended Posts

  • 0

Почему-то не исчезает квадратный маркер и их получается : и квадрат и ?

Почему??

.customtype-recent-posts li {
list-style-type: none;
}

.customtype-recent-posts li:before {
content: "?";
}

Попробуйте так:


.customtype-recent-posts li {
list-style: none;
}

Link to comment
Share on other sites

  • 0

Вот вызов

<div class="widget cuty_rp" id="enh-rp-2"><h3 class="widget-title">Последние вопросы</h3><ul class="customtype-recent-posts">
<li><a href="http://regotvet.ru/question/likvidatsiya-ip-i-vzyiskanie-dolga">Ликвидация ИП и взыскание долга</a></li>
<li><a href="http://regotvet.ru/question/smena-yur-adresa-ooo-na-adres-propiski-direktora">Смена юр. адреса ООО на адрес прописки директора</a></li>
</ul>
</div>

а вот ссылки на файлы css (просто не знаю какой конкретно кусок нужен)

http://regotvet.ru/wp-content/themes/newspaper_v1.0/style.css
http://regotvet.ru/wp-content/themes/newspaper_v1.0/styles/default.css
http://regotvet.ru/wp-content/themes/newspaper_v1.0/custom.css

Edited by fowl
Link to comment
Share on other sites

  • 0

Вся проблема заключается вот здесь:


.widget ul li {
background: url(images/dot.png) no-repeat 0 18px;
....
}

Добавляется картинка в виде квадратика. Так что отмените фон.


.customtype-recent-posts ul li {
background:none;
}

Edited by DStereo
Link to comment
Share on other sites

  • 0

Код теперь вот такой - все-равно не помогает!!


.customtype-recent-posts
{
background: #daefd6;
}

.customtype-recent-posts ul li {
background:none;
}

.customtype-recent-posts li {
list-style-type: none;

}

.customtype-recent-posts li:before {
content: "?";
}

Выходит вот что

U7ZSIrc5.png

Link to comment
Share on other sites

  • 0

Странно, потому что то, что я вижу, так это то, что файл custom.css в котором вы определили свои стили подключается позже чем style.css в котором объявлен селектор .widget ul li, соответственно ваше правило должно идти по коду позже, а получается наоборот и из-за этого срабатывает правило специфичности. В общем сделайте так:


.customtype-recent-posts ul li{
background:none !important;
}

Link to comment
Share on other sites

  • 0

Если сделаю так, то точки исчезают, но текст идет с новой строки



.customtype-recent-posts
{
background: #daefd6;
}

.customtype-recent-posts ul li{
background:none !important;
}


.customtype-recent-posts li {
list-style-type: none;
background:none !important;
}

.customtype-recent-posts li:before {
content: "?";
}

ETwkUoWD.png

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