acosmin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [JustWrite] child theme – justwrite makes me crazy – child themePlease wait for the next update, it might solve your problems.
It’s currently in the que waiting to be approved. You can download a copy from here to test it… http://wordpress.org/themes/justwrite/developers/ v1.0.4
Forum: Themes and Templates
In reply to: [JustWrite] I believe I found a bug in functions.phpYou are right, I’ve already submitted an update (v1.0.4) and it should get approved.
http://wordpress.org/themes/justwrite/developers/
Thank you for pointing that out!
Forum: Themes and Templates
In reply to: [JustWrite] child theme – justwrite makes me crazy – child themefor any css error in mobile view you should take a look in
../assets/css/media-queries.cssForum: Themes and Templates
In reply to: [JustWrite] Scaling Titles & HeadingsI don’t really have the time to help with customization.
A simple way to find which class is applied to an heading is to use the “Inspect Element” feature in Google Chrome…
Open your website in Chrome, put the mouse hover an element you want to change, right-click and click on Inspect element. On the right side there should be a box displaying some of the css applied to that element. Copy the class name, paste it in style.css and add your own styles to it.
You might want to take a look in ../assets/css/media-queries.css. This file is responsible with the responsive part. If your screen resolution is bellow 1920x1080px this is where font sizes change.
Some resources:
https://developer.chrome.com/devtools/index
https://developer.chrome.com/devtools/docs/elements
https://www.youtube.com/results?search_query=Inspect+ElementForum: Themes and Templates
In reply to: [JustWrite] mini sidebar – background greyThat is how it was designed. It has a gradient applied to it.
Forum: Themes and Templates
In reply to: [JustWrite] Large links.single-template-1 .display-posts-listing .title { font-size: 18px; )Forum: Themes and Templates
In reply to: [JustWrite] Customizer not workingMaybe click on “Save & Publish” in the Theme customizer.
Forum: Themes and Templates
In reply to: [JustWrite] Text alignment "justify" in the excerptOpen
style.cssand add at the bottom of the file:.post-template-1 p { text-align: justify; }Forum: Themes and Templates
In reply to: [JustWrite] Remove post image from homepageForum: Themes and Templates
In reply to: [JustWrite] How to change the 3 spots ("read more")Open
../post-templates/content.php, find line 44:<a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>"><i class="fa fa-ellipsis-h fa-lg"></i></a>replace it with:
<a href="<?php echo esc_url( get_permalink() ); ?>" rel="nofollow" title="<?php _e( 'Read More...', 'acosmin' ) ?>">+ d'infos</a>I don’t know how it will display but it should work.
The left sidebar isn’t widgets ready, it’s not possible.
Forum: Themes and Templates
In reply to: [JustWrite] Add logoYou could do it but I don’t recommend it.
Open
style.php, find:.logo-image { display: inline-block; max-width: 180px; }replace 180 with the size you want.
Forum: Themes and Templates
In reply to: [JustWrite] Bilinugal Comments FormThank you for the notice!
Forum: Themes and Templates
In reply to: [JustWrite] Social Buttons opening in new windowFor the social widget open
../acosmin/widgets/default-social-buttons-widget.phpand find line 42:echo '<li class="' . $social_align . '"><a href="'. esc_url( $instance[$social_id] ) .'" class="social-btn ' . $social_icon . '">' . esc_html( $instance[$social_title] ) . ac_icon( $social_icon, false ) . '</a></li>';replace it with:
echo '<li class="' . $social_align . '"><a target="_blank" href="'. esc_url( $instance[$social_id] ) .'" class="social-btn ' . $social_icon . '">' . esc_html( $instance[$social_title] ) . ac_icon( $social_icon, false ) . '</a></li>';Forum: Themes and Templates
In reply to: [JustWrite] Advertising SpotsSorry, it’s not possible with the current options.