Forum Replies Created

Viewing 15 replies - 391 through 405 (of 639 total)
  • Theme Author acosmin

    (@acosmin)

    The theme was not designed to not have featured images, but you can open style.css, find:

    .post-content {
    width: 71.29186602870813%;
    float: right;
    padding: 0 0 0 45px;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    }

    replace the width with 100%.

    Also, you might need to adjust some media-queries for mobile view.

    You should use a child theme.

    Theme Author acosmin

    (@acosmin)

    I am sure this is not a theme related issue and I’m marking this ticket as resolved.

    Theme Author acosmin

    (@acosmin)

    I can see the article on the front page…

    If you are using Chrome, press Ctrl+Shift+Del and clear your browsing data/cache.

    It might have something to do with WP Super Cache.

    I tried IE/Chrome/Firefox/Opera and the article is there.

    Here is a screenshot: http://i.imgur.com/LEWk4vb.jpg

    Theme Author acosmin

    (@acosmin)

    You are referring to this code in style.css?

    ::selection {
    	background: rgba(0,0,0,0.9);
    	color: #fff;
    	text-shadow: none;
    }
    
    ::-moz-selection {
    	background: rgba(0,0,0,0.9);
    	color: #fff;
    	text-shadow: none;
    }

    I think you can add !important to make it work, like this:

    ::selection {
    	background: #000 !important;
    	color: #fff !important;
    	text-shadow: none;
    }
    
    ::-moz-selection {
    	background: #000 !important;
    	color: #fff !important;
    	text-shadow: none;
    }
    Theme Author acosmin

    (@acosmin)

    Hi! I can’t really help you if you don’t post a link/url.

    Theme Author acosmin

    (@acosmin)

    Hi! I am sorry but this isn’t a support forum for third party plugins. The plugin might not be compatible with this theme.

    The only thing you can do is open style.css, find:

    .single-template-1 .single-content {
    position: relative;
    padding-top: 35px;
    border-top-width: 5px;
    border-top-style: solid;
    line-height: 145%;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    }

    Replace it with:

    .single-template-1 .single-content {
    position: relative;
    padding-top: 35px;
    border-top-width: 5px;
    border-top-style: solid;
    line-height: 145%;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    padding-left: 50px;
    }

    It will add some padding on the left side.

    Theme Author acosmin

    (@acosmin)

    You can open style.css, find:

    .header-wrap {
    	width: 100%;
    	height: 220px;
    	background-color: #111;
    	background-repeat:no-repeat;
    	background-size:cover;
    	background-position: center center;
    	border-bottom-width: 1px;
    	border-bottom-style: solid;
    	position: relative;
    }

    and change 220px to the size you want, 420px for example. Also do this simple math 420-220=200 and remember 200.

    Now find:

    .top {
    	height: 150px;
    }

    and add 200 to 150, so change 150px to 350px.

    For the mobile view I think you should find:

    @media screen and (max-width: 650px) {
    	.post-template-1 .details .p-share, .single-content.featured-image:before, .comment-main:after, .comment-main:before {
    		/* Elements with Display None */
    		display: none;
    	}
    
    	/* ------ */
    	.container { margin: 30px auto; }
    	.content-wrap { padding-top: 30px; }

    and add bellow it .top { height: 150px; }

    Remember to use a child theme. In case the theme is updated you might lose your changes.

    Theme Author acosmin

    (@acosmin)

    Open single.php and remove:

    <aside class="share-pagination<?php if( $disable_about ) { echo ' about-disabled'; } ?> clearfix">
    
                        <?php
    						// Next - Previous Post
    						ac_post_nav_arrows();
    					?>
    
                        <div class="clear-border"></div>
                    </aside><!-- END .share-pagination -->
    Theme Author acosmin

    (@acosmin)

    Open ../post-templates/content.php and remove these lines:

    <time class="detail left index-post-date" datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"><?php echo get_the_date( 'M d, Y' ); ?></time>
    			<span class="detail left index-post-author"><em><?php _e( 'by', 'acosmin' ); ?></em> <?php the_author_posts_link(); ?></span>
    			<span class="detail left index-post-category"><em><?php _e( 'in', 'acosmin' ); ?></em> <?php ac_output_first_category(); ?></span>

    Open featured-content.php and remove:

    <aside class="info clearfix">
    						<a href="<?php comments_link(); ?>" rel="nofollow" class="com"><?php ac_icon('comment'); ?></a>
    						<time class="date" datetime="<?php echo get_the_date( 'Y-m-d' ); ?>"><?php echo get_the_date( 'M d, Y' ); ?></time>
    						<?php ac_output_first_category( 'category' ); ?>
    					</aside>

    You might consider creating a child theme.

    Theme Author acosmin

    (@acosmin)

    Hi! Sorry but I don’t plan on adding more options for the mini-sidebar.

    The space is so small and you can’t add any widget in there (except lists, ads and maybe some text).

    With a little php/html knowledge you can add something but I don’t recommend it.

    Theme Author acosmin

    (@acosmin)

    Instead of if ($count == 1) try if ( ( $count % 5 ) == 0 )

    Theme Author acosmin

    (@acosmin)

    I am sorry but there is a lot of custom work involved in what you are saying and I am not available for hire.

    You can try jobs.wordpress.net.

    Or you can open ../assets/js/myscripts.js, find:

    if( $(window).width() >= 1600 ) {
    			$('.mini-sidebar').removeClass('browse-window-opened');
    			$('#browse-more').removeClass('activated');
    			$('.mini-sidebar').removeAttr('style');
    		}

    change 1600 to the size you want and after that adjust the percentages (for media queries) in style.css. Example:

    /* Desktop version */
    @media screen and (max-width: 1700px) {
    	/* ------ */
    	.content-wrap { width: 70%; }
    	.sidebar { width: 30%; }
    }
    
    @media screen and (max-width: 1600px) {
    	.mini-sidebar, .mini-sidebar-bg, .wrap-over-1600, .browse-more .banner-160-wrap {
    		/* Elements with Display None */
    		display: none;
    	}
    	.browse-more {
    		/* Elements with Display Block */
    		display: block;
    	}
    
    	/* ------ */
    	.content-wrap { width: 68%; }
    	.sidebar { width: 32%; }
    	.wrap-template-1 { margin: 0; }
    	.posts-wrap { padding: 0 45px 0 0; }
    	.post-template-1 .details .detail, .single-template-1 .details .detail { margin-left: 15px; }
    	.single-template-1 .details .detail:first-child { margin-left: 0; }
    	.single-style-template-1, .about-share, .comments-area, #disqus_thread { padding: 0 45px 0 0; }
    	.slider-wrap { padding: 0 45px 0 0; }
    	.ac-social-buttons-widget ul li { width: 48%; }
    }

    First remove:

    .mini-sidebar, .mini-sidebar-bg, .wrap-over-1600, .browse-more .banner-160-wrap {
    		/* Elements with Display None */
    		display: none;
    	}
    	.browse-more {
    		/* Elements with Display Block */
    		display: block;
    	}

    I will not explain more than that because I need to test a lot of other things and it takes a lot of time.

    Theme Author acosmin

    (@acosmin)

    They don’t need to be aware of that, if you open you website on a laptop or tablet the theme will adjust automatically.

    You can read more on responsive web design here.

    Theme Author acosmin

    (@acosmin)

    The theme is optimized, resize your browser’s window and you will see it adjusts to any window size.

    Theme Author acosmin

    (@acosmin)

    *whole

Viewing 15 replies - 391 through 405 (of 639 total)