acosmin
Forum Replies Created
-
You can open
../assets/css/media-queries.css
, find line 23:@media screen and (max-width: 1600px) {
change 1600 to another minimum width, ex 1400.
I am pretty sure it won’t look that nice because it wasn’t designed to work that way. ??
Forum: Themes and Templates
In reply to: [JustWrite] Add logoThere might be a bug, I will fix it in the next update. A quick fix would be to open functions.php and (line 402) find:
echo '<img src="' . esc_url( $logo_image ) . '" alt="' . get_bloginfo( 'name' ) . '" />';
Change it with:
echo '<img src="' . esc_url( $logo_image ) . '" style="width: 100%;" alt="' . get_bloginfo( 'name' ) . '" />';
Also, your logo is bigger than it should be, recommended width is 180px.
Forum: Themes and Templates
In reply to: [JustWrite] Ad above or below postYou can open
../post-templates/content-single.php
, add your ad code on line 23 for ‘above’ and another ad code on line 47 for ‘bellow’. I don’t really know how it will look because the theme was not designed with that in mindForum: Themes and Templates
In reply to: [JustWrite] Add logoPlease post your website url
Forum: Themes and Templates
In reply to: [JustWrite] Slider does not workWhich posts did you set as featured posts?
Forum: Themes and Templates
In reply to: [JustWrite] Slider does not workDid you try enabling the slider from WP Administration Panel > Appearance > Theme Options > Slider Tab and clicking on “Show Featured Posts Slider”?
Forum: Themes and Templates
In reply to: [JustWrite] Slider does not workI can’t view your website because Maintenance Mode is enabled…
Forum: Themes and Templates
In reply to: [JustWrite] Slider does not workPlease post your website’s url.
Forum: Themes and Templates
In reply to: [JustWrite] Slider does not workDid you read the documentation?
Forum: Themes and Templates
In reply to: [JustWrite] website not seen while creating child themeI am sorry to say this but I can’t provide support for any major theme customization.
You obviously made some changes and I wouldn’t even know where to start to help you.
Css3 transitions should go in your child theme’s style.css. You only need to find the proper element class or id and apply the style to it. Ex:
.element-class { -webkit-transition:width 1s linear 2s; transition: width 1s linear 2s; }
Forum: Themes and Templates
In reply to: [JustWrite] Social Network Icons Missing from TopYou can also open header.php and find the following lines:
<ul class="header-social-icons clearfix"> <?php // Social variables - Options Panel $header_fb = of_get_option( 'ac_facebook_url' ); $header_tw = of_get_option( 'ac_twitter_username' ); $header_gp = of_get_option( 'ac_gplus_url' ); $header_rss = of_get_option( 'ac_custom_rss_url' ); ?> <?php if ( $header_tw != '' ) { ?><li><a href="https://twitter.com/<?php echo esc_html( $header_tw ); ?>" class="social-btn left twitter"><?php ac_icon('twitter'); ?></a></li><?php } ?> <?php if ( $header_fb != '' ) { ?><li><a href="<?php echo esc_url( $header_fb ); ?>" class="social-btn right facebook"><?php ac_icon('facebook'); ?></a></li><?php } ?> <?php if ( $header_gp != '' ) { ?><li><a href="<?php echo esc_url( $header_gp ); ?>" class="social-btn left google-plus"><?php ac_icon('google-plus'); ?></a></li><?php } ?> <li><a href="<?php if( $header_rss != '' ) { echo esc_url( $header_rss ); } else { bloginfo( 'rss2_url' ); } ?>" class="social-btn right rss"><?php ac_icon('rss'); ?></a></li> </ul><!-- END .header-social-icons -->
and change them with:
<ul class="header-social-icons clearfix"> <?php // Social variables - Options Panel $header_rss = of_get_option( 'ac_custom_rss_url' ); ?> <li><a href="https://yourtwitterurl" class="social-btn left twitter"><?php ac_icon('twitter'); ?></a></li> <li><a href="https://yourfacebookurl" class="social-btn right facebook"><?php ac_icon('facebook'); ?></a></li> <li><a href="https://yourgoogleplusurl" class="social-btn left google-plus"><?php ac_icon('google-plus'); ?></a></li> <li><a href="<?php if( $header_rss != '' ) { echo esc_url( $header_rss ); } else { bloginfo( 'rss2_url' ); } ?>" class="social-btn right rss"><?php ac_icon('rss'); ?></a></li> </ul><!-- END .header-social-icons -->
Also change https://yourtwitterurl, https://yourfacebookurl, https://yourgoogleplusurl with your profiles urls.
Forum: Themes and Templates
In reply to: [JustWrite] website not seen while creating child themePlease read the documentation on how install JustWrite.
You don’t need to upload the plugins folder.
As for your errors please change
define('WP_DEBUG', false);
todefine('WP_DEBUG', true);
in wp-confing.php (located in your main WordPress install folder) and copy paste here any errors the website gives you.You can also try and disable all your plugins and see if the problem persists.
Forum: Themes and Templates
In reply to: [JustWrite] Social Network Icons Missing from TopThere should be a Theme Options link in the Appearance tab. If it isn’t please download the theme again, from here and reupload it.
Forum: Themes and Templates
In reply to: [JustWrite] Social Network Icons Missing from TopHi! Go to WordPress Admin Panel > Appearance > Theme Options, click on the “Social” tab and fill in those fields.
You should know that the top menu has buttons only for rss, g+, fb and twitter.
Forum: Themes and Templates
In reply to: [JustWrite] Ad widgetsThat widget is available only to our newsletter subscribers. You can download it from here: https://www.acosmin.com/theme/justwrite/#buynow