titchone
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Vantage] Recent post on frontpageHi Morck, to have the posts like the preview page you have to use the widget siteorigin post carousel / this widget uses featured image so you will have to make sure that all your posts have a image set as featured within the post.
Forum: Themes and Templates
In reply to: [Iconic One] Social buttons on top of logo?you can do this with css margin-top: this controls how far from the top you want the item displayed.
as the social links are placed underneath the logo you have to set the value to -100px this will move the social buttons over the logo.
Open:
custom.cssAdd:
.socialmedia {
float: right;
padding: 7px 10px;
text-align: right;
width: 25%;
margin-top: -100px;
}Forum: Themes and Templates
In reply to: [Iconic One] How to ADD date and comments count on main pageyou can add is_archive aswell to show date meta line when viewing category’s/archives
<?php if ( is_single() || is_home() || is_archive() ) : //for date on single, home page and archive ?>
Forum: Themes and Templates
In reply to: [Iconic One] menu bari have worked it out ??
i now have a nice tabs look to my menu bar.
.themonic-nav .current-menu-item > a, .themonic-nav.current-menu-ancestor > a, .themonic-nav.current_page_item > a, .themonic-nav.current_page_ancestor > a { background:#00A1E0; color: #FFF; font-weight: bold; border-top-left-radius:8px; border-top-right-radius:8px; } .themonic-nav li:hover { color: #fff; background:#00A1E0; border-top-left-radius:8px; border-top-right-radius:8px; } .themonic-nav li { color: #fff; background: none; border-top-left-radius:8px; border-top-right-radius:8px; }
open: custom.css
Add:
.entry-summary{ text-align: justify; text-justify: inter-word; }
this justify’s text in experts and single post.
try this
open: custom.cssadd:
.themonic-logo {
padding: 17px;
text-align: center;
margin:10 0;
}Forum: Plugins
In reply to: [WooCommerce] woocommerce widget imageshow do go about resizing the images in the widget areas.do you know what file in woocommerce i need to edit.