acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] How to remove the default slider from front pageCould you please post your website’s url? Thank you!
Forum: Themes and Templates
In reply to: [JustWrite] hide author, date and tags.single-content .post-tags-wrap { display: none !important }In style.css find:
blockquote.alignleft, img.alignleft { margin: 30px 35px 30px 0; } .wp-caption.alignleft { margin: 30px 35px 30px 0; } blockquote.alignright, img.alignright { margin: 30px 0 30px 35px; } .wp-caption.alignright { margin: 30px 0 30px 35px; }Change the pixels value to what you want. To learn more about margins: http://www.w3schools.com/css/css_margin.asp
From that page:
If the margin property has four values: margin: 25px 50px 75px 100px; top margin is 25px right margin is 50px bottom margin is 75px left margin is 100pxIt would be better if you use a child theme.
- This reply was modified 9 years, 7 months ago by acosmin.
Forum: Themes and Templates
In reply to: [JustWrite] hide author, date and tagsUse this CSS:
.index-post-category, .index-post-author, .index-post-date { display: none !important; }Forum: Themes and Templates
In reply to: [JustWrite] Featured Slider on homepage is brokenTry disabling all your plugins, including any caching ones and see if it works. There is a javascript error on your page.
Forum: Themes and Templates
In reply to: [JustWrite] How to one H1 tags for Homepage and single postsOpen header.php and change:
<a href="<?php echo esc_url( home_url() ); ?>" title="<?php bloginfo( 'name' ); ?>" class="logo-contents<?php ac_logo_class(); ?>"><?php ac_get_logo(); ?></a>with:
<a href="<?php echo esc_url( home_url() ); ?>" title="<?php bloginfo( 'name' ); ?>" class="logo-contents<?php ac_logo_class(); ?>"><h1><?php ac_get_logo(); ?></h1></a>Forum: Themes and Templates
In reply to: [JustWrite] wrong heading for Category ArchiveWe’re working on a fix, it should be fixed in the next update.
Forum: Themes and Templates
In reply to: [JustWrite] Sample DataSorry, we do not provide sample data.
Forum: Themes and Templates
In reply to: [JustWrite] MasonryThis article may help: https://blog.cloudflare.com/cloudflare-tips-troubleshooting-common-proble/ check the Rocket Loader subtitle.
I am sorry to say but if it’s a cloudflare issue, I am unable to help you with it. You’ll need to hire someone to fix this for you.
Forum: Themes and Templates
In reply to: [JustWrite] Some changes on homepage1. To make the text justify use this css:
.post-template-1 p { text-align: justify; }2. Open
/post-templates/content.phpand remove:
<span class="detail left index-post-author"><em><?php _e( 'by', 'justwrite' ); ?></em> <?php the_author_posts_link(); ?></span>3. You can’t use large images.
Use a child theme.
Forum: Themes and Templates
In reply to: [JustWrite] MasonryI am running out of solutions here 🙂 It’s a plugin conflict, you’ll need to disable all your plugins and activate them one by one until you spot the one causing the issues (make sure you activate the caching plugins last).
Also, it can have something to do with a Cloudflare option.
Forum: Themes and Templates
In reply to: [JustWrite] MasonryI think it has something to do with Cloudflare’s Rocket script:
http://stackoverflow.com/questions/9681032/why-is-wordpress-placing-text-rocketscript-instead-of-text-javascript-when-uFrom what I could understand you need open .
./section-templates/section-masonry-2.phpand change:<script type='text/javascript'>to:
<script data-cfasync='false' type='text/javascript'>Forum: Themes and Templates
In reply to: [JustWrite] MasonryIt might be a plugin interfering, but you can also try:
Open
../section-templates/section-masonry-2.php, find:style="display: none;"and
$('#sm-<?php echo absint( $wnum ); ?>-large').show();remove them.
Let’s try this first for masonry #2. Make sure you don’t have any caching plugins activated when you look at it in real time.
Forum: Themes and Templates
In reply to: [JustWrite] AC SEC Featured image slider too large!Hi! I think you are talking about another slider. To enable that one you will have to go in the
Customizer > Layout Options > Sliderand click onShow Featured Posts Slider.After that you can remove “AC Slider widget”.
Forum: Themes and Templates
In reply to: [JustWrite] Image hover effect (class required)I can’t see the results because of WP Supercache. It’s serving me static html files. You need to empty it.
Did it work?