fadilfaizal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Inkzine] i want to modify the sidebar. how to do that?Go to Appearance>Editor>Sidebar.php and remove the following code:
<aside id="archives" class="widget"> <h1 class="widget-title"><?php _e( 'Archives', 'inkzine' ); ?></h1> <ul> <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?> </ul> </aside> <aside id="meta" class="widget"> <h1 class="widget-title"><?php _e( 'Meta', 'inkzine' ); ?></h1> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <?php wp_meta(); ?> </ul> </aside>
Forum: Themes and Templates
In reply to: [Inkzine] Read More showing in englishJust completely remove
<php _e ('READ MORE', 'inkzine'); ?>
and put Lire la suite… in its place.Forum: Themes and Templates
In reply to: [Inkzine] Text grey want it darkerThis works for your website 100% guaranteed for your article excerpt titles.
h2.entry-title a { color: #000 !important; }
If you want to make your navbar’s color black as well make it this:
div.screen-reader-text a, div.menu-thehoustondiaries-container ul li.menu-item a, h2.entry-title a { color: #000 !important; }
I have tested this in the Web Inspector for Chrome. This HAS to work.
Forum: Themes and Templates
In reply to: [Inkzine] Featured Image Not showing in PostsHopefully that solves your problem
Forum: Themes and Templates
In reply to: [Inkzine] Text grey want it darkerIt is better if you put
.main-entry-title { color: #000 !important; }
so that you don’t change the color of the footer.
Forum: Themes and Templates
In reply to: [Inkzine] Featured Image Not showing in PostsI did a bit of looking around and found something in the theme. To solve your issue, go to to Appearance>Editor and on the right, click to content-single.php and look for this:
<!-- <div class="featured-image-single"> <?php if (has_post_thumbnail() ) the_post_thumbnail(); ?> </div> -->
Now remove the
<!--
at the beginning and the-->
at the end. This will solve your problem. You no longer will need the plugin you had installed.Forum: Themes and Templates
In reply to: [Inkzine] Text grey want it darkerChange
body { color: #000; }
to
body { color: #000 !important; }
The
!important
overrides all other css.
I couldn’t have inverted the colors on my website Maverick Youth without having used!important
.Forum: Fixing WordPress
In reply to: Image Upload not working after changing directoryI found the solution here!