rahulpatil72
Forum Replies Created
-
how to add Pinterest save pin button on image hover without plugin.
Send me the manual code to insert the save pin button.
I had tried this code:
<script async defer src="https://assets.pinterest.com/js/pinit.js"></script>
But with this code save button appear at the top of blog post, i want to add button on image hover.
Forum: Plugins
In reply to: [WP YouTube Lyte] Missing alt text errorHow to resolve this issue?
?
I am unable to hide floating buttons from the WordPress homepage?
I had added this code along with above code in addition CSS,
img.attachment-full.size-full {
border-radius: 10px;
}
.post-image img {body.home .a2a_floating_style { display: none; }
border-radius: 10px;
}
.posted-on .updated {
display: inline-block;
}
.posted-on .published {
display: none;
}
.posted-on .updated:before {
content: “Last updated: “;
}
.byline img {
width: 25px;
height: 25px;
border-radius: 50%;
position: relative;
vertical-align: middle;
margin: 0 10px 0 0;
}
.byline,
.comments-link,
.posted-on {
display: inline-block;
}
.comments-link,
.posted-on {
border-left: 1px solid #ddd;
padding-left: 10px;
margin-left: 10px;
}
.comments-link:before {
display: none;
}
h2.entry-title {
margin-bottom: 20px;
}a.read-more {
width: 100%;
box-sizing: border-box;
text-align: center;@media (max-width: 768px) {
.footer-widgets .widget-title {
font-size: 21px;
}
.footer-widgets .textwidget, .footer-widgets .textwidget a, .footer-widgets .widget_nav_menu .menu-item a {
font-size: 19px;
}
}where is “Additional CSS” box in AddToAny Settings?
Forum: Themes and Templates
In reply to: [GeneratePress] how to customize fonts of mobile view onlycheck screen shot for the url
- This reply was modified 4 years, 3 months ago by rahulpatil72.
Forum: Themes and Templates
In reply to: [GeneratePress] how to customize fonts of mobile view onlyForum: Themes and Templates
In reply to: [GeneratePress] how to customize fonts of mobile view onlyPlease tell me how to change heading and paragraph font size of footer widget?
(pls see the screenshot for more details:https://prnt.sc/vyf7v8)Also, tell me the code to hide it from any other page!
Forum: Plugins
In reply to: [Yoast SEO] article schema formadd as early as possible
Forum: Plugins
In reply to: [Yoast SEO] Please tell me how to make schema globally on the website.amp error: https://ibb.co/qJ0yQrJ(error screenshot)
Forum: Plugins
In reply to: [Yoast SEO] Please tell me how to make schema globally on the website.Forum: Plugins
In reply to: [Yoast SEO] Please tell me how to make schema globally on the website.please provide me with your email id!
how to add functions.php file in PHP of child theme?
add_filter( ‘generate_comments_title_output’, function( $output, $comments_title ) {
return sprintf(
‘<h3 class=”comments-title”>%s</h3>’,
esc_html( $comments_title )
);
}, 10, 2 );
Where this code has to be added?for making h4 headings I will have add in this way or else:
add_filter( ‘generate_comments_title_output’, function( $output, $comments_title ) {
return sprintf(
‘<h4 class=”comments-title”>%s</h4>’,
esc_html( $comments_title )
);
}, 10, 2 );Also, tell me how to change ‘2 THOUGHTS ON “XYZ”‘ to h4, which appear after someone comment on our post…