Site logo

Archived topic

Leave a comment Link

9 replies · Started by Mouse on December 3, 2022

Viewing posts 1–10 of 10

Hi, I added a hook in order to add "leave the comment" next to the author name and date, but its not in line with it.
It shows like this:
Date by author
Leave a comment

Whereas I want it to show Date by Author Leave a Comment

Thanks in advance.

Hi there,

how did you add it ? is it using a GP Element ? and which type.

Yes I am using GP elements and hook with the following code:
<span class="comments-link">
<?php comments_popup_link( __( 'Leave a comment', 'generatepress' ), __( '1 Comment', 'generatepress' ), __( '% Comments', 'generatepress' ) ); ?>
</span>

I could not find any other way to show it.

Hi Mouse,

Can you temporarily reenable right-clicking on your site so we can take a closer look? It's currently disabled.

sure, please check now

Hi there,

add this CSS:


@media(min-width: 360px {
    .single-post .entry-meta {
        display: inline-block;
    }
}

Not working

Can you try this?

@media (min-width: 360px) {
    .single-post .entry-meta {
        display: inline-block;
    }
}

Thanks got it working.

No problem :)

This archived topic is closed to new replies.