PressMaximum
Forum Replies Created
-
Forum: Reviews
In reply to: [Customify] Super customizable and easy to useHi @cmcardle,
David here, thank you very much for your review ??
Let us know if you have any issue or recommendation. We really appreciate it!
Forum: Themes and Templates
In reply to: [Customify] How do you change the title size within a blog post?Forum: Themes and Templates
In reply to: [Customify] Global ColourForum: Themes and Templates
In reply to: [Customify] How do you change the title size within a blog post?Hi @howlshy,
Please try to add this to Customize => Additional CSS if you want to change the post title font size:
.entry-title { font-size: 30px; }
Let me know how it goes!
Forum: Themes and Templates
In reply to: [Customify] Global ColourHi @techadminwltc,
Do you mean the global color option does not appear? Or you changed the color but it does not work?
Forum: Reviews
In reply to: [Customify] Excelente temaHi @lcodina,
Thank you very much for the reviews, let us know if you having any issue or recommendation. We really appreciate it!
Forum: Reviews
In reply to: [Customify] Excellent theme and fast tooHi Wolfson,
Thank you very much for the reviews, let us know if you having any issue or recommendation. We really appreciate it!
Forum: Themes and Templates
In reply to: [Customify] Search Box not working on Internet ExplorerHi @tab7x,
Please try to add this to Customize => Additional CSS:
.builder-item--search_box { width: 100%; }
Let me know how it goes!
Forum: Themes and Templates
In reply to: [Customify] Disable title in the front page’s coverYou’re welcome ??
Have a nice weekend!
Forum: Reviews
In reply to: [Customify] Top themeHi @josephass,
Thank you very much for the reviews, let us know if you having any issue or recommendation. We really appreciate it ??
Forum: Themes and Templates
In reply to: [Customify] Disable title in the front page’s coverHello @brunosauce,
The Disable Title setting only works in case you set the page header for all pages is Default in Customize => Layouts => Page Header.
So you can try to add this to hide the page title on the page you want:
.page-id-XX .page-cover-title { display: none; }
The XX is number id of page: https://www.competethemes.com/blog/find-page-id/
Hope it helps!
Forum: Themes and Templates
In reply to: [Customify] Woocommerce pages. Add content above footerHi @techion,
Please submit your issue here and our developer will take a look:
Forum: Themes and Templates
In reply to: [Customify] Responsive design thresholds and header menuYou’re welcome ??
Forum: Themes and Templates
In reply to: [Customify] Responsive design thresholds and header menuHi @josephass,
Thank you for your kind words!
I understand your idea but unfortunately, we don’t have any option to change it so far.
Temporary, you can add this to Customize => Additional CSS:
.hide-on-tablet, .customify-grid .hide-on-tablet { display: inherit; } .cb-row--mobile { display: none; } @media ( max-width: 768px ) { .hide-on-tablet, .customify-grid .hide-on-tablet { display: none; } .cb-row--mobile { display: inherit; } }
Let me know!
Forum: Themes and Templates
In reply to: [Customify] Woocommerce pages. Add content above footerHello @techion,
You can add the code like this:
if( is_woocommerce() ) { function action_woocommerce_after_main_content() { echo do_shortcode('[et_pb_section global_module="4358"][/et_pb_section]'); }; add_action( 'customify/site-end/before', 'action_woocommerce_after_main_content', 10, 2 ); }
Let me know!
- This reply was modified 6 years, 7 months ago by PressMaximum.