Jump to content
  • 0

Не работает inline-block в шаблоне WP


Troll13
 Share

Question

Добрый день!

Уже пошел третий день, не могу решить простой вопрос.) Почему не работает inline-block в выводе списка постов ( нужно вывести миниатюры с подписями в ряд по 3 штуки). Вывод постов работает, только они выводятся вертикально, в столбик. Почему не понятно..

Код html работает


<ul class="goddies">


</ul>
.goddies {
font: 14px Verdana, Geneva, sans-serif;
margin:30px 10px;
padding:0;
list-style: none;
width:100%;
height:100%;
overflow:hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

.goddies li {
display:inline-block;
width: 45% !important;
float:none !important;
min-width:5em;
opacity: 1;
margin-right:4%;
margin-bottom: 4%;
}

Видимо, я что-то не так пишу в category.php. Но никак не пойму, что.. Заранее благодарю!


<?php get_header(); ?>

<div id="leftcontent">
<p class="slovo">I am Roshan, a UI / Web designer with combined experience of 7 + years in Web Design and Graphic Design. I love designing websites.I am Roshan, a UI / Web designer with combined experience of 7 + years in Web Design and Graphic Design. I love designing websites.</p>
<?php if(have_posts()): ?>
<?php while(have_posts()): the_post(); ?>
<ul class="goddies">
<li><h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(); ?></a>
<?php the_excerpt(); ?>
<a href="<?php the_permalink(); ?>"><img class="buttonmore" src="<?php bloginfo('template_url'); ?>/images/viewmorebtn.gif" alt="" /></a></li>
</ul>
<?php endwhile; ?>
<?php endif; ?>
</div>

<?php get_sidebar(); ?>

<div class="clear"></div>
</section>
</div>

<?php get_footer(); ?>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Во-первых, в этом случае width = 100% + 20px:


margin:30px 10px;
width:100%;

Во-вторых, проверяйте дебагером. Я вижу две возможные причины:

  1. При width=45%, margin=4% и/или min-width=4em до определенных размеров два элемента в сумме образуют > 100% ширины родителя, поэтому происходит перенос на следующую строку (следует помнить, что если между <li> будету пробелы или переносы строк, то между ними будет отображаться пробел, так как inline-block). Не лучше ли для этих целей использовать float?
  2. Где-то перекрываются стили.

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