• Resolved dasadler

    (@dasadler)


    I am sure (I think) that this can be done in CSS but I don’t know how to do it.

    I am using template 21 which shows:
    Date
    Author
    Testimonial

    What I would like is for it to display as follows:
    Date Author
    Testimonial

    In other words, place the Author on the same lime as the date. This may not be practical for a sidebar but I am doing it on a page where there is sufficient room. Any thoughts on how to do this?

    https://wordpress.org/plugins/hms-testimonials/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Jeff K

    (@kreitje)

    You would need to use CSS.

    Something like this:

    .hms-testimonial-container .date,
    .hms-testimonial-container .author {
    display:inline;
    }

    Thread Starter dasadler

    (@dasadler)

    Thanks Jeff although it runs together like DateAuthor. How would I put spacing between day and author to get Date Author?

    Plugin Author Jeff K

    (@kreitje)

    This will add some padding to the left and right of each block.

    .hms-testimonial-container .date,
    .hms-testimonial-container .author {
    display:inline-block;
    padding:0px 8px;
    }

    Thread Starter dasadler

    (@dasadler)

    Perfect! thank you very much.

    Plugin Author Jeff K

    (@kreitje)

    🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Template question’ is closed to new replies.