• 08-11-2024, 10:43:04
    #1
    Arkadaşlar merhabalar,

    Bir temada blog sayfasında yer alan gönderilerin tamamı alt alta gözüküyordu. Yani 1 sütun, örneğin 15 satır gibi.
    Ben bunu 3 sütun'a bölmek istedim. Örnek 3'e bölünmüş bir sayfamda class'ları aldım ve ekledim. Ancak şimdi de sayfa bölündüyse de içerikler alt alta gözükmeye devam ediyor.
    Bunları yan yana nasıl getirebilirim?

    edit /////

    Problem çözüldü arkadaşlar. Benim ayarlamamda sayfayı 3'e bölüp o 3'lünün içindeki bir sütuna tekrar bir 3'lü eklemeye çalışıyormuşum. Yani aslında 1/9 gibi bir görüntü oluyordu.
    Baştaki 3'e bölüm komutunu kaldırıp listeleme yapınca içerik normale döndü. Çok teşekkürler
  • 08-11-2024, 10:54:31
    #2
    Dryas adlı üyeden alıntı: mesajı görüntüle
    Arkadaşlar merhabalar,

    Bir temada blog sayfasında yer alan gönderilerin tamamı alt alta gözüküyordu. Yani 1 sütun, örneğin 15 satır gibi.
    Ben bunu 3 sütun'a bölmek istedim. Örnek 3'e bölünmüş bir sayfamda class'ları aldım ve ekledim. Ancak şimdi de sayfa bölündüyse de içerikler alt alta gözükmeye devam ediyor.
    Bunları yan yana nasıl getirebilirim?

    Blog sayfası : https://www.eduvesta.com/blog/
    merhaba, row içinde col-3 var col-3 içine bütün yazıları eklemişsiniz. bunun yerine her yazıyı col-3 olarak ekleyin
  • 08-11-2024, 11:13:16
    #3
    ilhansylmz adlı üyeden alıntı: mesajı görüntüle
    merhaba, row içinde col-3 var col-3 içine bütün yazıları eklemişsiniz. bunun yerine her yazıyı col-3 olarak ekleyin
    Yanıt için çok teşekkürler
    <!-- Start Blog -->
    <section class="blog section-padding">
    <div class="section-padding tutor-wrap tutor-wrap-parent tutor-courses-wrap tutor-container course-archive-page">
    <div class="tutor-row tutor-gx-xl-5">
    <div class="tutor-col-3 tutor-course-filter-container">
    <?php
    if ( have_posts() ) :
    /* Start the Loop */
    while ( have_posts() ) :
    the_post();
    /*
    * Include the Post-Type-specific template for the content.
    * If you want to override this in a child theme, then include a file
    * called content-___.php (where ___ is the Post Type name) and that will be used instead.
    */
    get_template_part( 'template-parts/content', get_post_type() );
    endwhile; ?>
    <div class="post_pagination text-center fix">
    <?php the_posts_pagination( array(
    'mid_size' => 2,
    'prev_text' => '<i class="fa-solid fa-arrow-left-long"></i>',
    'next_text' => '<i class="fa-solid fa-arrow-right-long"></i>',
    ) ); ?>
    Bu şekilde olan kısmı

    <!-- Start Blog -->
    <section class="blog section-padding">
    <div class="section-padding tutor-wrap tutor-wrap-parent tutor-courses-wrap tutor-container course-archive-page">
    <div class="tutor-col-3 tutor-course-filter-container">
    <?php
    if ( have_posts() ) :
    /* Start the Loop */
    while ( have_posts() ) :
    the_post();
    /*
    * Include the Post-Type-specific template for the content.
    * If you want to override this in a child theme, then include a file
    * called content-___.php (where ___ is the Post Type name) and that will be used instead.
    */
    get_template_part( 'template-parts/content', get_post_type() );
    endwhile; ?>
    <div class="post_pagination text-center fix">
    <?php the_posts_pagination( array(
    'mid_size' => 2,
    'prev_text' => '<i class="fa-solid fa-arrow-left-long"></i>',
    'next_text' => '<i class="fa-solid fa-arrow-right-long"></i>',
    ) ); ?>
    böyle değiştirdim ancak sonuç değişmedi