acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] How to enable thumbnails inside all postsOn the main page it’s a little tricky. All thumbnail sizes were calculated so that they look good on all devices. You need to know some CSS to adjust them for every screen resolution.
I recommend you use http://jobs.wordpress.net/
Forum: Themes and Templates
In reply to: [JustWrite] How to enable thumbnails inside all postsOpen
../post-templates/content-single.phpand remove these lines:<?php if( $show_thumbnail && ac_check_paged() ) { ?><?php } ?>Also in
style.cssfind:.single-template-1 .featured-image-wrap { width: 50%; margin: 0 0 35px 60px; float: right; -webkit-box-shadow: -8px 8px 0 #e1e1e1; -moz-box-shadow: -8px 8px 0 #e1e1e1; box-shadow: -8px 8px 0 #e1e1e1; }Change it with:
.single-template-1 .featured-image-wrap { width: 100%; margin: 0 0 35px 0px; float: right; -webkit-box-shadow: 0 8px 0 #e1e1e1; -moz-box-shadow: 0 8px 0 #e1e1e1; box-shadow: 0 8px 0 #e1e1e1; }Also add this:
.single-content.featured-image:before { display:none !important; }I would recommend you use a child theme.
Forum: Themes and Templates
In reply to: [JustWrite] 3 columns? How?You need to be above 1600px to see the third column. That’s how the theme was designed. If you are bellow 1600px you will see a button “Browse More” in the menu. When clicked it will open that sidebar in a more unique way. I know it’s limited, sorry for any inconvenience.
Forum: Themes and Templates
In reply to: [JustWrite] how to align logo in centernice to see someone else is helping around here 🙂
I’ll mark this post as resolved.
Forum: Themes and Templates
In reply to: [JustWrite] Removing posts content(few words) on the front pageOpen
../post-templates/content.phpand remove these lines:<?php the_excerpt(); ?>Open
sidebar-browse.phpand remove these lines:<?php if( has_nav_menu( 'mini-second' ) ) { ?> <aside class="side-box"> <h3 class="sidebar-heading" id="mini-second-title"><?php echo esc_html( get_theme_mod( 'ac_mini_second_title', 'Add a menu') ); ?></h3> <nav class="sb-content clearfix"> <?php // Second Menu wp_nav_menu( array( 'container' => '', 'theme_location' => 'mini-second', 'items_wrap' => '<ul class="normal-list">%3$s</ul>' ) ); ?> </nav><!-- END .sb-content --> </aside><!-- END .sidebox --> <?php } else { ?> <aside class="side-box"> <h3 class="sidebar-heading"><?php esc_html_e( 'Add a menu', 'acosmin' ); ?></h3> <nav class="sb-content clearfix"> <ul class="normal-list"><li class="current_page_item"><a href="#"><?php _e( 'Right Sidebar - Second Menu', 'acosmin' ); ?></a></li></ul> </nav> </aside> <?php } ?>Forum: Themes and Templates
In reply to: [JustWrite] Trouble with Right Sidebar menu in browse sectionYou need to assign some titles to those sections. Go into Theme Customizer > Mini-Sidebar and fill those inputs: First Menu – Title, Second Menu – Title
Hi! In
acosmin/widgets/custom-popular-posts-widget.phpfind these lines:$mcn = get_comments_number(); $ncn = get_comments_number();replace them with:
$postid = get_the_ID(); $mcn = get_comments_number( $postid ); $ncn = get_comments_number( $postid );If this doesn’t work there might be some incompatibilities between the two plugins. I will investigate the problem… until then please use another plugin.
Forum: Themes and Templates
In reply to: [JustWrite] menu overlaps with logo in mobile viewHey! Happy New Year!
Try adding this in the child theme’s
style.cssfile.@media screen and (max-width: 500px) { .header-wrap .top { height: 150px; } }I would also want to let you know that I am not responsible for any custom work/changes you do to the theme.
Do you have any comments on the blog?
Is the /es/ version a new WordPress install?Forum: Themes and Templates
In reply to: [JustWrite] 3 columns? How?3 Columns appear only if your screen resolution is above 1600px.
Hi! I am not home at the moment and I can’t take a really good look at your problem. Because of the upcoming holidays I will be back in 3-4 days.
If you can, please disable that plugin until I have an answer to your problem.
Happy New Year!
Forum: Themes and Templates
In reply to: [JustWrite] Jetpack Edit CSSYou need to respect the css classes hierarchy.
For example posts that appear on the main page have a class .post-template-1. In single view a post has the class .single-template-1. So you need to put the parent’s class in front ex:
.post-template-1 .title { font-size: 20px; }I need a better example from you. What exactly do you want to style?
Forum: Themes and Templates
In reply to: [JustWrite] categories don't workI think it has something to do with you cache plugin. Anyway, glad to know it all worked out.
Forum: Themes and Templates
In reply to: [JustWrite] categories don't workCan you go in the WP Administration Panel > Posts > Categories, now find AMORE/COPPIA and put your mouse hover it, then hover “View” and copy the link.
Paste the link here.
Also please let me know if they are subcategories.