• Resolved offzinho

    (@offzinho)


    If you add a list of items when viewing the page, it does not appear below each other, but rather the same as a paragraph.

    and as if you didn’t have css code.

    ul {
      list-style: square inside url("sqpurple.gif");
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter offzinho

    (@offzinho)

    sorry, single.php view perfect.

    page.php not working content list.

    Theme Author VW THEMES

    (@vowelweb)

    Hello @offzinho,

    Please add the list option in the editor first and then add the list item, it will work please check the below images
    https://ibb.co/2S98Cs2
    https://ibb.co/R3J0HTK

    Thanks.

    Thread Starter offzinho

    (@offzinho)

    <?php
    /**
     * The template part for displaying page content
     *
     * @package The Computer Repair
     * @subpackage the-computer-repair
     * @since the-computer-repair 1.0
     */
    ?>
    
    <div id="content-vw">
      <?php if(has_post_thumbnail()) {?>
        <img class="page-image" src="<?php the_post_thumbnail_url('full'); ?>">
        <hr>
      <?php }?>
      <h1><?php the_title();?></h1>
      <?php the_content();?>
      <?php
          // If comments are open or we have at least one comment, load up the comment template.
          if ( comments_open() || get_comments_number() ) :
             comments_template();
          endif;
      ?>
      <div class="clearfix"></div>
    </div>

    It only worked here if I change the div “content-vw” to “post” or any other name.

    Theme Author VW THEMES

    (@vowelweb)

    Hello @offzinho,

    “content-vw” is the main class on which we have done all the CSS. you have to use this class in your customization.

    Thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Post-Single/pagenot add List’ is closed to new replies.