Clarion Technologies
Forum Replies Created
-
Forum: Installing WordPress
In reply to: new to wordpressYour Welcome. 🙂
Forum: Fixing WordPress
In reply to: different menus in different pagesWelcome. 🙂
Hi,
Yes when the user fills the form and submits the form data is automatically saved in database by the plugin and can be viewed in the dashboard.
Thanks
Forum: Fixing WordPress
In reply to: Table background color missingYou are most welcome
Please close this ticket.Forum: Fixing WordPress
In reply to: Table background color missingI know I didn’t ask you to do so ,
you just have to replace
div.PRtext to .PRtext pjust doing this will solve your problem.
Forum: Fixing WordPress
In reply to: Table background color missingYou don’t need to do any changes in html,
just need to replace below css codefrom: div.PRtext { margin-left:2em; margin-right: 2.5em; font-style: italic; background-color: #F4BFC0 !important; color: #F4BFC0 !important; font-size:24px !important; } to .PRtext p { margin-left:2em; margin-right: 2.5em; font-style: italic; color: #008000 !important; font-size:12px !important; }Forum: Fixing WordPress
In reply to: Navigation menu, child button background coloradd below css in your css file
.main-navigation .sub-menu li a:hover{ background-color: #fff !important; }Forum: Fixing WordPress
In reply to: Table background color missingPlease rename class name to “.PRtext p” so it will be like:
.PRtext p { margin-left:2em; margin-right: 2.5em; font-style: italic; color: #008000 !important; font-size:12px !important; }Then Adjust font size according to your need.
Forum: Fixing WordPress
In reply to: Moving from dev folder to liveCheck below link
http://prnt.sc/b88i79Forum: Fixing WordPress
In reply to: Table background color missingRegarding child theme issue
https://ww.wp.xz.cn/support/topic/mantra-setting-class-text-colorsize-in-child-theme?replies=1I will suggest you to add “!important” property to last two line of code.
Please use Below code:div.PRtext { margin-left:2em; margin-right: 2.5em; font-style: italic; color: #008000 !important; font-size:12px !important; }Forum: Themes and Templates
In reply to: [Mantra] setting class text color/size in child themeRegarding child theme issue
https://ww.wp.xz.cn/support/topic/mantra-setting-class-text-colorsize-in-child-theme?replies=1I will suggest you to add “!important” property to last two line of code.
Please use Below code:div.PRtext { margin-left:2em; margin-right: 2.5em; font-style: italic; color: #008000 !important; font-size:12px !important; }Forum: Fixing WordPress
In reply to: Navigation not working1) Remove “s-” check this image http://prnt.sc/b88er1
2) Just add in the navigation like below you missed to “s-” in navigation links just append s- to your navigation links like below
http://dphs.com/#s-customer-profiles
http://dphs.com/#s-applications
http://dphs.com/#s-contactForum: Themes and Templates
In reply to: Seprate Category Page for custom post typesHello piyush138,
You can based on the post type like so: say you have category.php for regular posts and your-custom-type-category.php for your custom post type posts then just add this to your regular category.php at the very top.
<?php if (have_posts()){ the_post(); if( 'your_custom_type' == get_post_type( $post ) ) { rewind_posts(); get_template_part('your-custom-type-category'); exit(); } } ?>and now when ever a category is requested it will check for your custom post type and if found it will use your your-custom-type-category.php as template and all regular posts will display using category.php with no change.
Hope this helps
Thanks
Forum: Fixing WordPress
In reply to: Process of manual credit card process.Hi,
Please ask this in Woocommerce plugin support forum.
Thanks
Forum: Fixing WordPress
In reply to: How to show related post in a proper way?Hello malteserone,
Your site link is not working its just showing single image in browser.Please check it once.
Thanks