• Resolved Chantal

    (@boekluxevilla)


    Hello Wouter,

    I have two questions:

    Is it possible to show the thumbnails in landscape mode (side by side)? I have the widget in my footer and it’s taking a lot of space in portrait.

    I can’t figure out how to get the title above the thumbnail? I have done some custom css but it doesn’t work.

    Thanks,
    Chantal

    • This topic was modified 6 years, 8 months ago by Chantal.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Mosterd3d

    (@mosterd3d)

    Hi Chantal

    Answer question 1:
    YES, select a custom thumbnailsize in the widgets dropdown and use CSS to finalise it.

    Answer question 2:
    Yes, Make use of a custom template inside your theme (see doc) and customise that template to your needs (include with a little bit help of CSS).

    In your case the change inside the template could look like this:

    <li class="<?php echo $class; ?>">
                        <?php if ($title_is_active && $title_is_link) : ?>
                            <a class="lastViewedTitle" href="<?php echo $perma; ?>"><?php echo $title; ?></a>
                        <?php elseif ($title_is_active && !$title_is_link) : ?>
                            <h3 class="lastViewedTitle"><?php echo $title; ?></h3>
                        <?php endif; ?>
                        <?php if ($hasThumb && !$thumb_is_link): ?>
                            <div class="lastViewedThumb"><?php echo $thumb; ?></div>
                        <?php elseif ($hasThumb && $thumb_is_link) : ?>
                            <a class="lastViewedThumb" href="<?php echo $perma; ?>"><?php echo $thumb; ?></a>
                        <?php endif; ?>
    
                        <div class="lastViewedcontent">
                            <?php if ($content_is_link && $content_is_active) : ?>
                                <a href="<?php echo $perma; ?>" class="lastViewedExcerpt">
                                    <div>
                                        <?php echo $content; ?>
                                        <?php if ($more_active) : ?>
                                            <span class="more"><?php echo $more_title; ?></span>
                                        <?php endif; ?>
                                    </div>
                                </a>
                            <?php elseif (!$content_is_link && $content_is_active) : ?>
                                <div class='lastViewedExcerpt'>
                                    <?php echo $content; ?>
                                    <?php if ($more_active) : ?>
                                        <a href="<?php echo $perma; ?>" class="more"><?php echo $more_title; ?></a>
                                    <?php endif; ?>
                                </div>
                            <?php endif; ?>
                        </div>
                    </li>

    good luck and let me know!

    Wouter

    Plugin Author Mosterd3d

    (@mosterd3d)

    Questions have been answered, case closed!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Possibility showing thumbnails in landscape?’ is closed to new replies.