PressMaximum
Forum Replies Created
-
Forum: Reviews
In reply to: [Customify] Хорошая темаForum: Themes and Templates
In reply to: [Customify] 5 issues + questions (colors, margins, etc)So is everything done now?
Forum: Reviews
In reply to: [Customify] Awesomely good!Hi @tgedge1
Thank you very much for your review!
Forum: Themes and Templates
In reply to: [Customify] Featured Image Not ShownHi @tgedge1,
Yes. That is true. But it is going to release on tomorrow 😀
Btw, I hope you could leave us a review 🙂
Have a nice day!
- This reply was modified 7 years, 6 months ago by PressMaximum.
Forum: Themes and Templates
In reply to: [Customify] Featured Image Not ShownHi @tgedge1,
That is not a bug. By default, we hide the featured image on all pages. You can open this file in Customify theme in your site:
template-parts/content-page.phpThen replace with my code below:
<?php /** * Template part for displaying page content in page.php * * @link https://codex.ww.wp.xz.cn/Template_Hierarchy * * @package customify */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( customify_is_post_title_display() ) { ?> <header class="entry-header"> <?php the_title( '<h1 class="entry-title h3">', '</h1>' ); ?> </header><!-- .entry-header --> <?php } ?> <?php the_post_thumbnail('large'); ?> <div class="entry-content"> <?php the_content(); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'customify' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> </article><!-- #post-<?php the_ID(); ?> -->Let me know!
- This reply was modified 7 years, 6 months ago by PressMaximum.
- This reply was modified 7 years, 6 months ago by PressMaximum.
Forum: Themes and Templates
In reply to: [Customify] 5 issues + questions (colors, margins, etc)Hi @oakleaf101,
1. Unfortunately, we don’t have the option to change the sidebar background color + font color. But you can do it by custom CSS:
#sidebar-primary { background: #ccc; } #sidebar-secondary { background: #ccc; }2. The Heading Color is working well. It applies for H1 to H6.
See: https://cl.ly/5fb4773a8b6f
The Primary Color will be applied for button, input submit, pagination, read more button, tag link, cat link.
See: https://cl.ly/41d19b520ff6Or the link color: https://cl.ly/fe73eb0b7d25
You can open a single post and check it.
3 + 4. You can add this:
.widget-area .widget { margin-bottom: 2em; border-radius: 5px; border: 1px solid #000; }
Read more: https://www.w3schools.com/css/css_border.asp5. It is not limited 400px width, you can enter any number there:
https://cl.ly/f15dadebb320Hope it helps and let me know if you need anything else!
- This reply was modified 7 years, 6 months ago by PressMaximum.
Forum: Reviews
In reply to: [Customify] Awesome Customization Options with great designHi Manoj,
Thank you very much for your review!
Forum: Themes and Templates
In reply to: [Customify] How to delete Customify Settings metabox?Hello @sanjaro,
We don’t support to remove the Customify settings box.
But you can install this plugin:
https://ww.wp.xz.cn/plugins/add-admin-css/
then add this:
#customify_page_settings { display: none; }Hope it helps!
Forum: Themes and Templates
In reply to: [Customify] customify-sites: Edited pages cannot be savedHi @oakleaf101,
Please check your email.
Forum: Themes and Templates
In reply to: [Customify] Post content bugged.That’s great @sanjaro 🙂
Please mark the topic is resolved. Thank you!
Forum: Themes and Templates
In reply to: [Customify] Post content bugged.Hi @sanjaro,
Please try to add this to Customize => Additional CSS:
.entry-single { word-break: break-word; }Let me know!
Forum: Themes and Templates
In reply to: [Customify] Border themePerhaps you are confused. We are the Customify theme:
https://ww.wp.xz.cn/themes/customify/and the Customify Plugin you are using here:
https://ww.wp.xz.cn/plugins/customify/
> This is not our product.Please check again.
Forum: Themes and Templates
In reply to: [Customify] Post content bugged.Hello @sanjaro,
Thanks for your feedback.
However, I believe no one creates a text like that. Please put your real content then let me know if this problem still exists.
Forum: Themes and Templates
In reply to: [Customify] Sticky menu on tablet@nam1962 It is very easy if you use the Pro version.
In this case, you added position fixed to header top row, and add a fixed padding-top value for header main same as the header top row height on each desktop, tablet, and mobile screen.
However, the header top row height is dynamic. It is changed on each resolution and you can’t add exactly padding-top for all screens by custom CSS. And we can’t support you in this case.
Forum: Themes and Templates
In reply to: [Customify] Modify Customify TemplateYou’re welcome @tgedge1 🙂
Have a nice day!