Richie KS
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] Background image clickablethis one a bit tricky, first go to customizer->color->choose any background color, this is to show the container box.
add this to functions.php
function meso_add_bg_ad() { echo "<div id=\"click-ad-bg\"><a href=\"#\"><img src=\"http://sitename.com/wp-content/uploads/2016/08/img9999.jpg\"/></a></div>"; } add_action('bp_before_wrapper','meso_add_bg_ad');replace the link and img serc to your own
add this to custom css
#click-ad-bg {float:left;width:100%;height:100%;overflow:hidden;} #click-ad-bg img {position:absolute;top:0;left:0;display:block;z-index:10;max-width:100%;heigth:auto;} #bodycontent #container {z-index:100;position:relative;}Forum: Themes and Templates
In reply to: [MesoColumn] Top menu full widthseem working in my end, add this to customzer->general->custom css
#top-navigation:before,#top-navigation:after {display:none;}Forum: Themes and Templates
In reply to: [MesoColumn] Top menu shadow & article data1. https://wordpress.org/support/topic/how-to-remove-shadow-under-top-menu/
2. try add this to wp-admin->customizer->additonal css
#custom .feat-meta, #custom .post-meta { display:none; }Forum: Themes and Templates
In reply to: [MesoColumn] How to make 1 column footer instead of 4 columnscan’t really see if you’re not using default footer. if you have a chance, try revert to default footer with 3 widget setup.
its the wp-admin->custominer->additional css.
Forum: Themes and Templates
In reply to: [MesoColumn] Versión de WordPressreally havan’t test it on older 4.6 wp. better test it first on demo site with wp 4.6, not live site. just in case any function or php error comes up.
Forum: Themes and Templates
In reply to: [MesoColumn] How to make 1 column footer instead of 4 columnsadd this to custom/additional css in customizer
#custom .fbox {width:100%;padding:0;margin:0 0 2em;}Forum: Themes and Templates
In reply to: [MesoColumn] Top menu full widthadd this to functions.php
remove_action('bp_before_header', 'meso_add_top_nav'); add_action('bp_before_bodywrap', 'meso_add_top_nav',10);Forum: Themes and Templates
In reply to: [MesoColumn] Change number of products per rowseem work to me, using this code
https://docs.woocommerce.com/document/change-number-of-products-per-row//** * Change number or products per row to 3 */ add_filter('loop_shop_columns', 'loop_columns', 999); if (!function_exists('loop_columns')) { function loop_columns() { return 2; // 3 products per row } }
Forum: Themes and Templates
In reply to: [MesoColumn] An IDthat’s odd, could you try remove the id=”header”
seem like it follow this, try remove it and see if it still there.
but remember to put it back since id=”header” is needed there.
want to see if some plugin is code to add some html in #header via js.
- This reply was modified 7 years, 6 months ago by Richie KS.
Forum: Themes and Templates
In reply to: [MesoColumn] An IDtry edit this
<!-- HEADER START --> <header class="iegradient <?php echo strtolower($header_overlay).'_head'; ?>" id="header"<?php do_action('bp_section_header'); ?>>to
<!-- HEADER START --> <header class="iegradient" id="header">and see the html still echoing.
you can change the color on wp-admin->customizer->colors->top navigation.
need to remove your own edits to the css related to top navigation first just in case.
Forum: Themes and Templates
In reply to: [MesoColumn] An IDmaybe try remove
<?php do_action('bp_section_header'); ?>in hook-functions.php line 40.
Forum: Themes and Templates
In reply to: [MesoColumn] An IDok i see what you mean? i think some plugin or your edits make this appeared on header html.
<header class="iegradient no_head(((<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">)))" id="header">the wrap html shouldn’t happen in header html
Forum: Themes and Templates
In reply to: [MesoColumn] An IDthe site header css will break if you remove this.
why may i ask you want to remove the html id header?
Forum: Themes and Templates
In reply to: [MesoColumn] Forum description not showingi think it will no show if topic is empty on forum.
if you want to show it, add this to custom css/additonal css
#custom div.bbp-template-notice.info { display: block; }- This reply was modified 7 years, 7 months ago by Richie KS.