Forum Replies Created
- AuthorPosts
- Themonic-SupportKeymaster
Please use https://wordpress.org/plugins/regenerate-thumbnails/
Refer thumbnail section: https://themonic.com/online-documentation-usage-guide-for-iconic-one-pro/#thumbnails
December 30, 2023 at 12:06 pm in reply to: Center and enlarge the featured image under the post title on the homepage #7036Themonic-SupportKeymasterGood morning,
Line 54 of functions.php it control the excerpt thumbnails size
add_image_size('excerpt-thumbnail', 200, 140, true); // Sets Index Page Thumbnails
You can try changing the numbers 200,140 to 665,300 to get bigger image so that content will be below the image.
After making the above change you will have to regenerate thumbs once https://wordpress.org/plugins/regenerate-thumbnails/
December 16, 2023 at 11:38 am in reply to: Remove blank White Space above the footer and below the footer #7021Themonic-SupportKeymasterYou can use the following to hide that footer area referred in email:
#iop-footer.widget-area { display: none; }
The upper blank space is done by Google Ads and is showing ads at my location and can’t be removed unless you remove the Google Ads in that location.
Themonic-SupportKeymasterHi,
Footer menu can be placed in footer widgets, area below footer widgets where the copyright text sits can also be used to place HTML menu – i.e HTML links eg.
<a href="https://themonic.com/">Link Name</a> | <a href="https://themonic.com/">Link 2</a>
To reduce copyright area height, paste in Customizer -> Additional CSS:
footer[role=contentinfo] { padding: 14px 0; }
Please use [email protected] to send support queries with screenshot.
Themonic-SupportKeymasterHi,
Try the following in Customizer -> Additional CSS
@media screen and (max-width: 440px) { .entry-content p .entry-summary p { font-size: 14px; } .entry-header .entry-title a { font-size: 18px; } .entry-header .entry-title { line-height: 1; } }
—————-
Article title is 18px
Article text is 14pxchange the numbers as per your choice.
Photos and banners are auto resized.
After making the change, view in private mode in mobile during testing, else mobile might serve cached old copy.
—————-
For more refer: https://themonic.com/customization-guide-for-iconic-one-pro-with-css-codes/
Themonic-SupportKeymasterFor such functionality, search for plugins in the WordPress plugin repo, Popular Posts bundled with the theme has only basic functionality that uses WordPress inbuilt functions based on comments, modifying it will require custom work. Therefore it is better to use a plugin for advance functions.
Themonic-SupportKeymasterYour query is not clear, Please email to [email protected] with screenshot of what you want to hide and also provide URL details too.
Themonic-SupportKeymasterHi,
If you wish to change that text in theme files:
It can be found in Theme folder -> single.php > line 40
( 'Related Posts', 'themonic' )
Change only the word Related Posts in that line.
eg.
( 'bài viet liên quan', 'themonic' )
Themonic-SupportKeymasterHi,
There should be another “Latest posts” widget without the thumbnail that you can use.
September 26, 2023 at 1:07 pm in reply to: How to add ads 468×60 in top replace social widget, and change search bar #6993Themonic-SupportKeymasterTry this in Customizer -> Additional CSS
.socialmedia img { height: 60px; width: 468px; } .socialmedia { width: auto; }
Final result should look like this
Please note that the img URL should be from image uploaded to WP gallery otherwise it may look blurry.
- AuthorPosts