kinggeneral
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Quality Construction] Mobile : cannot click issue !So after all i fix my own issue :
by adding “col-xs-12”
and disable the rightsidebar floatcss to apply in your style.css :
/* Portrait tablet to landscape and desktop */ @media (min-width: 768px) and (max-width: 979px) { .right-sidebar .left-block { float: none; } }code to apply , please search in your theme this line, and add col-xs-12
<?php if ($quality_construction_designlayout != 'no-sidebar') { ?> <div class="col-md-3 col-xs-12"> <?php get_sidebar(); ?> </div> <?php } ?>i place that in every php that have no sidebar, and its work fine. all button can now be clicked well.
Forum: Themes and Templates
In reply to: [Quality Construction] zh_CN Language Problemhi, finally i can do it so it’s good to see without ‘…’ in every description text
i add this line : in every page of your templates.
<?php echo esc_html( wp_trim_words(get_the_content(), 255) ); ?>
so it will only trim when it reach 255 words.
Forum: Themes and Templates
In reply to: [Quality Construction] zh_CN Language Problemin my case . i am using polylang ( the newest polylang Version 2.1.5 ) for multi language,
and this happen,
**but for the “Quality Welcome Message” that have character limiter, i place it for 150 words and its works fine.
only happen in widget at front page
link : https://prnt.sc/fp51dg
- This reply was modified 8 years, 11 months ago by kinggeneral. Reason: add link screenshot
Forum: Themes and Templates
In reply to: [Quality Construction] Tree Listing CSS Problem (solution)this works well for me.
Forum: Themes and Templates
In reply to: [Quality Construction] Mobile : cannot click issue !i have search the treat of this issue, this issue started when resolution of width is lower than 1000px
so when its 999px it will get bugged like this. (happen to form and woocommerce)