acosmin
Forum Replies Created
-
I am marking this as resolved 😉 If you ever have the time, please consider leaving a review.
1. CSS to make it full width:
.single-template-1 .featured-image-wrap { width: 100% !important; margin: 35px 0 35px 0 !important; -webkit-box-shadow:none !important; -moz-box-shadow:none !important; box-shadow:none !important; }2. Not possible with the current code. You can hire someone to do this for you, try http://fiverr.com/
3. In your child theme or theme function.php file at the bottom, add this code:
remove_action( 'ac_single_post_title_info_thumb', 'ac_single_post_thumb' ); function ac_single_post_new_thumb() { global $paged; $show_thumbnail = get_post_meta( get_the_ID(), 'ac_show_post_thumbnail', true ); do_action( 'ac_single_post_thumbnail_before' ); ?> <figure class="featured-image-wrap"> <?php do_action( 'ac_single_post_thumbnail_before_image' ); if ( has_post_thumbnail() && $paged == false ) : the_post_thumbnail( 'ac-sidebar-featured' ); else : echo '<img src="' . get_template_directory_uri() . '/images/no-thumbnail.png" alt="' . __( 'No Thumbnail', 'justwrite' ) . '" />'; endif; do_action( 'ac_single_post_thumbnail_after_image' ); ?> </figure> <?php do_action( 'ac_single_post_thumbnail_after' ); } add_action( 'ac_single_post_title_info_thumb', 'ac_single_post_new_thumb', 20 );Hi! I’ll answer your question on Monday or Tuesday… Please be patient 🙂 it’s Sunday!
// Display text widget $ac_widget_rp_inst = array( 'title' => 'YOUR TITLE HERE', 'text' => 'YOUR TEXT GOES HERE', 'filter' => true ); echo '<aside class="side-box clearfix widget ac_popular_posts_widget"><div class="sb-content clearfix">'; the_widget( 'WP_Widget_Text', $ac_widget_rp_inst, $ac_widgets_wrap_args ); echo '</div></aside><!-- END .sidebox .widget -->';I am sorry but that’s the most I can help you. You should really try and use the provided sidebars. If you need simple customization, like this one, you should try https://www.fiverr.com/, it’s really cheap.
Forum: Themes and Templates
In reply to: [JustWrite] Masonary#2 behaving strangely on home pageCould you please post your website’s url, thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Changing text of sticky post banner using JavaScriptIf you find the theme useful and have the time, please leave a review 🙂
Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] Changing text of sticky post banner using JavaScriptCreate a directory named
post-templatesin your child theme’s folder. After that copy/paste this filecontent.phpfrom the parent theme (../post-templates/content.php) into the newly created folder.Open the file from the child theme and change this line:
__('Sticky Post', 'justwrite')to what you want, for example:
__('SYH News', 'justwrite')Forum: Themes and Templates
In reply to: [JustWrite] Visual Glitch appearing on my webpageIt’s not a coding glitch, you just don’t add widgets (with AC SEC in front) in those two sidebars (mentioned above).
Also, I am sorry but this is not a forum for teaching WordPress. You can get started here https://codex.wordpress.org/Main_Page
and ask more general questions here https://wordpress.org/support/
Forum: Themes and Templates
In reply to: [JustWrite] Visual Glitch appearing on my webpageIf you need help with WordPress or setting up this theme you can try: https://www.fiverr.com
Forum: Themes and Templates
In reply to: [JustWrite] Visual Glitch appearing on my webpageYou can’t use widgets prefixed with “AC SEC:” in these sidebars: Main Sidebar & Posts Sidebar. If you want you can use those with “AC:” prefix.
You can find the documentation here: http://www.acosmin.com/documentation/
Recommended image sizes are in JustWrite link.
Forum: Themes and Templates
In reply to: [JustWrite] Slider max heightYou can set a height. Your images aren’t big enough. Change the images of posts you want to use in the slider.
Above – Width: 900px; Height: 520px;
And regenerate them again.
Forum: Themes and Templates
In reply to: [JustWrite] main sidebar font sizeIf you want to change it directly in style.css look for:
.sidebar-heading, .tabs-widget-navigation {and there should be a
font-size: 10px;bellow that. Change 10 to something else.Forum: Themes and Templates
In reply to: [JustWrite] main sidebar font sizeCSS:
.sidebar-heading { font-size: 10px !important }Change
10to any number you want.Forum: Themes and Templates
In reply to: [JustWrite] main sidebar font sizeYour website doesn’t work on my end…
Forum: Themes and Templates
In reply to: [JustWrite] Twitter Stream widget