Richie KS
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [MesoColumn] Startpage only excerpts for postsdo you meant archive page like this, because its on excerpt already
http://demo.dezzain.com/category/featured/if you meant index (homepage), you need to reset the featured homepage category in customizer so it will show like archive in homepage.
date or post meta shouldn’t be hidden, did you add any custom css recently?
only pages do not have date stamp like this
http://demo.dezzain.com/page-templates/sitemap/Forum: Themes and Templates
In reply to: [MesoColumn] Thumbnail Uniform Sizeyou need to set the featured image size in wp-admin->customizer->general->posts->Featured Image Size
Forum: Themes and Templates
In reply to: [MesoColumn] Full width primary and footer menudid you try this?
Forum: Themes and Templates
In reply to: [MesoColumn] 2 columns on homepagedid you set anything on wp-admin->customizer->home featured category?
Forum: Themes and Templates
In reply to: [MesoColumn] Full width primary and footer menutry add this to custom css
footer .innerwrap, #bodywrap, .innerwrap-custom-header, #main-navigation .innerwrap { max-width: 100% !important; }Forum: Themes and Templates
In reply to: [MesoColumn] how to import or install the demo?no demo option, import, export features in this theme.
Forum: Themes and Templates
In reply to: [MesoColumn] Decrease space between rowsif you meant the post content line height, add this to custom css
#custom .post-content .entry-content {line-height:1.4em;}adjust the 1.4em to your own preference.
Forum: Themes and Templates
In reply to: [MesoColumn] Removing logo and extending leaderboard advertyou can either create an empty menu and set it on primary menu or add this css
#custom #main-navigation { display:none; }Forum: Themes and Templates
In reply to: [MesoColumn] Removing logo and extending leaderboard advertadd this to custom css
#topbanner {width:100%;text-align:center;}that should center the banner once the logo is hidden.
Forum: Themes and Templates
In reply to: [MesoColumn] BP Nouveau compatibilityis it not compatible? what is the specific issue?
Forum: Themes and Templates
In reply to: [MesoColumn] Removing logo and extending leaderboard advertyou’re using the mega menu plugin so this should be ask on the plugin author on how to add custom item (logo image) into the menu listing.
you could add this to hide the current logo if the top menu logo placed.
#custom #siteinfo { display:none; }
top banner area is flexible, no width fixed apply. you can add 900+ wide ad there.
Forum: Themes and Templates
In reply to: [MesoColumn] Category arangementyou simply can’t, category/archive page is not build for box content style.
Forum: Themes and Templates
In reply to: [MesoColumn] Upgrade from 1.5.6 to 1.6.5.1not that i know of, 1 user update his meso ver 1.3 to latest with latest wp also, seem working fine.
Forum: Themes and Templates
In reply to: [MesoColumn] Background image clickableworks fine to me.
try add bottom before ending ?>
Forum: Themes and Templates
In reply to: [MesoColumn] Slider showing after long secondsopen lib/scripts/custom.js, edit
jQuery('#featuredbox').delay(5000).fadeIn(400);or this
function startGallery() { var myGallery = new gallery($('myGallery'), { timed: true, delay: 8000, showArrows: true, showCarousel: false, embedLinks: true }); document.gallery = myGallery; } if (typeof onDomReady == 'function') { window.onDomReady(startGallery); }chnage the number, lower means faster, 2000 = 2 sec maybe