• Resolved dennisvdb

    (@dennisvdb)


    Hey,

    I want some text under all of the circles.
    Just something about myself. But i dont know how to fix it?

    Greatz Dennis

Viewing 4 replies - 1 through 4 (of 4 total)
  • I’ll second that, I was looking for a way to do this too, on all pages with circles (e.g. category pages), as well as the home page?
    Thanks!

    Try this (and make sure you’re working in a child theme):

    In the content-home.php file, add this at the bottom:

    <article id="post-<?php the_ID(); ?>" <?php post_class( $postclass ); ?>>
    	<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
                  <?php echo $thumb; ?>
                  <span class="hometitle">
                        <?php the_title(); ?>
                  </span>
             </a>
    </article><!-- #post-<?php the_ID(); ?> -->

    Then use the style.css file in your child theme to position the title. I used the info in this thread to center the text over the circles, so that solution should theoretically also work for positioning the text under the circles.

    The info in this thread might also help.

    Thread Starter dennisvdb

    (@dennisvdb)

    I just went to the “Main Index Template” and typed my text straight in there.

    </div><!-- #content .site-content -->
    		</div><!-- #primary .content-area -->
    
    My text here
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    so for me it’s solved

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘I want some text under all of the circles’ is closed to new replies.