Styling the Thumbnail and Text amount
-
Hello!
I’m a noob in php but I managed to activate the featured image. Now I want to change its style. Is it possible?
I gather the code from the sticky thread here and got it working, but now I need to give it some padding and a stroke. Maybe even make it bigger if it’s possible.
Here is what I have thus far:<!-- Start of Post Wrap --> <div class="post hentry ivycat-post" style="margin: 30px !important;"> <!-- This is the output of the excerpt --> <div class="entry-summary"> <!-- This will output of the featured image thumbnail --> <div class="featured-image"> <a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail( array(180,9999), array('class' => 'alignleft')); ?> </a> <!-- This is the output of the post TITLE --> <h2 class="entry-title" style="color:#000 !important;"><?php the_title(); ?></h2> <h5 class="entry-title" style="color:#f9be4a !important;"><?php the_date(); ?></h5> </div> <h6 class="entry-simmary" style="color:#CCC !important;"><?php the_excerpt(); ?></h6> </div> <h3 class="entry-title" style="font-size:15px; text-align:right; margin-top:15px; color:#f9be4a !important;"><a href="<?php the_permalink(); ?>">Leer más...</a></h3> <div class="divider2"></div> </div> <!-- // End of Post Wrap -->
Another thing I want to know:
Is there any way to short the amount of text that this plugin display? It isn’t that important for my design, but I would be glad to reduce it just a little.Thanks in advance!
- The topic ‘Styling the Thumbnail and Text amount’ is closed to new replies.