Forum Replies Created
-
#109696On March 23, 2014 at 4:58 pm
Add this to your Custom CSS:
.fixed_site {min-width: 1000px;}
#109684On March 23, 2014 at 4:34 pmoops sorry. try replacing this:
.category-blog .lay1 .hentry:nth-child(2), .category-blog .lay1 .hentry:nth-child(4), .category-blog .lay1 .hentry:nth-child(6), .category-blog .lay1 .hentry:nth-child(8), .category-blog .lay1 .hentry:nth-child(10), .category-blog .lay1 .hentry:nth-child(12) { margin-right: 25px!important; }
with this:
.category-blog .lay1 .hentry:nth-child(2), .category-blog .lay1 .hentry:nth-child(4), .category-blog .lay1 .hentry:nth-child(6), .category-blog .lay1 .hentry:nth-child(8), .category-blog .lay1 .hentry:nth-child(10), .category-blog .lay1 .hentry:nth-child(12) { margin-right: 0px!important; }
#109547On March 23, 2014 at 8:08 amyou can just add your css to the very bottom of your style.css file from Appearance> Editor.
#109151On March 22, 2014 at 8:30 amTo install the theme, Go to Appearance> Themes> Install Themes> Upload and upload the zip file that you downloaded.
#109149On March 22, 2014 at 8:27 amI dont understand..in single posts pages? Can you send me a screenshot?
#109147On March 22, 2014 at 8:21 amadd this to your Custom CSS:
.desc{ font-style: italic; }
#109142On March 22, 2014 at 7:38 amAdd this to the very bottom of your stylesheet:
.category-blog .lay1 .hentry:nth-child(3), .category-blog .lay1 .hentry:nth-child(6), .category-blog .lay1 .hentry:nth-child(9), .category-blog .lay1 .hentry:nth-child(12), .category-blog .lay1 .hentry:nth-child(15), .category-blog .lay1 .hentry:nth-child(18) { margin-right: 25px!important; } .category-blog .lay1 .hentry:nth-child(2), .category-blog .lay1 .hentry:nth-child(4), .category-blog .lay1 .hentry:nth-child(6), .category-blog .lay1 .hentry:nth-child(8), .category-blog .lay1 .hentry:nth-child(10), .category-blog .lay1 .hentry:nth-child(12) { margin-right: 25px!important; }
#108661On March 21, 2014 at 9:26 amadd this to the very bottom of your stylesheet:
#copyright{float:left;}
#108660On March 21, 2014 at 9:21 amthe posts are loading fine on page load…
checked on both chrome and firefox..#108657On March 21, 2014 at 9:17 amFirst add this to the very bottom of your Stylesheet:
#sidebar{margin-top:20px;} .lay1 {width: 670px;}
then open up zenon.js file and replace this line:
var divs = jQuery(".lay1 .hentry");
with this:
var divs = jQuery(".home .lay1 .hentry");
if you dont know how to edit the zenon.js file, try this plugin:
#108401On March 20, 2014 at 4:13 pmopen up nivo.php and replace this:
<p><?php echo $arr['slide_description']; ?></p>
with this:
<a <?php if (!empty ($arr['slide_url'])) { ?>href="<?php echo $arr['slide_url']; ?>"<?php } ?>> <p><?php echo $arr['slide_description']; ?></p> </a>
#108386On March 20, 2014 at 3:30 pmyou want the accordion slides to open small portion when you mouse over each slider?
and to fix the product image issue. try adding this to your Custom CSS:
.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img{width:auto!important}
#108258On March 20, 2014 at 7:14 amOpen up header.php and replace this:
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
with this:
<title><?php bloginfo('name'); ?><?php if(is_home()){ ?> - <?php bloginfo('description')?><?php } ?><?php wp_title(); ?></title>
#108250On March 20, 2014 at 7:00 amsorry guys. it should have been:
[wpml_translate lang="en"]Your English Text Here...[/wpml_translate] [wpml_translate lang="it"]Your Italian Text Here...[/wpml_translate]
@Cecilia check your site. Fixed it.
#108134On March 19, 2014 at 9:20 pmtry disabling the sticky menu option from Theron Options page.
#108126On March 19, 2014 at 9:05 pmare you on wordpress.com?
the wordpress.com version of the theme was completely modified by wordpress.com team. they shouldnt send you back to me.#108122On March 19, 2014 at 9:01 pmAdd this to the very bottom of your stylesheet to increase the site width and to hide your footer:
.headcenter, .center{ width: 90%!important; } #copyright{display:none;}
to disable the thumbnail in slider open up functions.php and replace this:
controlNavThumbs: true
with:
controlNavThumbs: false
#108099On March 19, 2014 at 8:13 pm#108069On March 19, 2014 at 7:16 pmyou did not update the theme and which margins are you talking about?
#108059On March 19, 2014 at 6:44 pmtry adding this to your Custom CSS:
/*SIDR PLUGIN STYLE*/ .sidr{display:none;position:absolute;position:fixed;top:0;height:100%;z-index:999999;width:260px;overflow-x:none;overflow-y:auto;background:#333;color:#fff} .sidr .sidr-inner{padding:0 0 15px} .sidr .sidr-inner>p{margin-left:15px;margin-right:15px} .sidr.right{left:auto;right:-260px} .sidr.left{left:-260px;right:auto} .sidr ul{display:block;margin:0 0 15px;padding:0;border-top:1px solid #1a1a1a;border-bottom:1px solid #4d4d4d} .sidr ul li{display:block;margin:0;line-height:48px;border-top:1px solid #4d4d4d;border-bottom:1px solid #1a1a1a} .sidr ul li a,.sidr ul li span{padding:0 15px;display:block;text-decoration:none;color:#fff} .sidr ul li ul{border-bottom:none;margin:0}.sidr ul li ul li{line-height:40px;font-size:13px} .sidr ul li ul li:last-child{border-bottom:none} .sidr ul li ul li a,.sidr ul li ul li span{color:rgba(255,255,255,0.8);padding-left:30px}