hironori1009
フォーラムへの返信
-
フォーラム: 使い方全般
返信が含まれるトピック: カテゴリーページの投稿を2列にするmain-style.cssファイルの以下のコード(太字)を加えたら
3列になりましたが,2列にするためにはどうしたらいいでしょう?
ちなみにflexをblockにしても変化がありません。#content {
display: inline-flex;
padding-top: 26px;
}よろしくお願いします。
フォーラム: 使い方全般
返信が含まれるトピック: カテゴリーページの投稿を2列にするわすれてました。こちらがURLです。
http://trywork.info
よろしくお願いします。フォーラム: 使い方全般
返信が含まれるトピック: カテゴリーページの投稿を2列にするすいません。もうちょっと具体的に言っていただかないとわからないです。
いつもFirebugでcssの編集場所をサーチして編集しています。
cssファイルの編集する箇所を言っていただけると幸いです。
よろしくお願いします。フォーラム: 使い方全般
返信が含まれるトピック: カテゴリーページの投稿を2列にするhtmlのファイルはないです。
loop-blog.phpのファイルですが、こちらではないですよね?<?php /* Loop Name: Blog */ ?>
<!– displays the tag’s description from the WordPress admin –>
<?php
if (is_tag())
echo tag_description();if (have_posts()) : while (have_posts()) : the_post();
// The following determines what the post format is and shows the correct file accordingly
echo ‘<div class=”post_wrapper”>’;
$format = get_post_format();
get_template_part( ‘includes/post-formats/’.$format );if ($format == ”)
get_template_part( ‘includes/post-formats/standard’ );
echo ‘</div>’;
endwhile; else: ?><div class=”no-results”>
<?php echo ‘<p>‘ .theme_locals(“there_has”). ‘</p>’; ?>
<p><?php echo theme_locals(“we_apologize”); ?> /” title=”<?php bloginfo(‘description’); ?>”><?php echo theme_locals(“return_to”); ?> <?php echo theme_locals(“search_form”); ?></p>
<?php get_search_form(); /* outputs the default WordPress search form */ ?>
</div><!–no-results–>
<?php endif; ?>こちらはポストのCSSでstyle.cssにあるコードです。
.post__holder {
border: 4px double;
margin-bottom: 35px;
overflow: hidden;こちらはstandard.phpです。
<article id=”post-<?php the_ID(); ?>” <?php post_class(‘post__holder’); ?>>
<?php if(!is_singular()) : ?>
<header class=”post-header”>
<?php if(is_sticky()) : ?>
<h5 class=”post-label”><?php echo theme_locals(“featured”);?></h5>
<?php endif; ?>
<h2 class=”post-title”>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>
</header>
<?php endif; ?>
<?php get_template_part(‘includes/post-formats/post-thumb’); ?><?php if(!is_singular()) : ?>
<!– Post Content –>
<div class=”post_content”>
<?php
if (of_get_option(‘post_excerpt’)==”true” || of_get_option(‘post_excerpt’)==”) { ?>
<div class=”excerpt”>
<?phpif (has_excerpt()) {
the_excerpt();
} else {
if (!is_search()) {
$content = get_the_content();
echo my_string_limit_words($content,55);
} else {
$excerpt = get_the_excerpt();
echo my_string_limit_words($excerpt,55);
}
} ?>
</div>
<?php }
$button_text = of_get_option(‘blog_button_text’) ? of_get_option(‘blog_button_text’) : theme_locals(“read_more”) ;
?>
” class=”btn btn-primary”><?php echo $button_text; ?>
<div class=”clear”></div>
</div><?php else :?>
<!– Post Content –>
<div class=”post_content”>
<?php the_content(”); ?>
<div class=”clear”></div>
</div>
<!– //Post Content –>
<?php endif; ?><?php get_template_part(‘includes/post-formats/post-meta’); ?>
</article>いろいろコードを載せてしまいお手数ですが、よろしくお願いします。
フォーラム: 使い方全般
返信が含まれるトピック: 各カテゴリーに各ロゴタイトルを挿入ありがとうございます。解決できました!
フォーラム: 使い方全般
返信が含まれるトピック: chromeで尺度変更時、投稿のレイアウトが崩れるそうですか。販売者に尋ねたら、うちは販売しているだけで、少しでも編集したら、
有料サービスに問い合わせろということでした。編集してはいけない商品という事なんですかね?販売者としての責任がないような返答でした。フォーラム: 使い方全般
返信が含まれるトピック: chromeで尺度変更時、投稿のレイアウトが崩れるこちらが環境のバージョンです。
wordpress3.6
モンスターテンプレートで購入したテーマtheme44496と親テーマCherry
MYSQL5.0
CPIサーバー
Google Chrome バージョン 37.0.2062.103m
URL http://trywork.infoテーマは投稿新規追加で数件追加してトップページに3列3行の表示にした程度の物
でもレイアウトが崩れました。尺度75%の時に投稿が動き、90%の時2列になります。
よろしくお願いします。