Mr. Lou
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: “https://mydomain.com” vs. “https://www.mydomain.com”Thank you all for your replies and suggestions.
I was able to fix the problem by editing the “Web.config” file on my window server and as it’s described here.Forum: Themes and Templates
In reply to: [Bold Headline] Eliminate/Reduce the gap between each postThanks Christine for your help. I changed the code you gave me to:
.hentry { border-top: 1px solid #ddd; display: inline-block; margin: 0 0 0; width: 100%; }
and it looks better now.
This is your theme but I have it loads inside an iframe with the following modification:h1.entry-title { font-size: 24px !important; font-size: 2.4rem; font-weight: bold; font-style: italic; } .nav-previous { display: none; } .nav-next { display: none; } .cat-links { display: none; } #primary .entry-summary { float: left; width: 100%; } .page-title { display: none; } .hentry { border-top: 1px solid #ddd; display: inline-block; margin: 0 0 0; width: 100%; }
and some modifications to the head & footer php.
Forum: Themes and Templates
In reply to: [Bold Headline] Eliminate/Reduce the gap between each postThere you go and thanks for your help.
Forum: Themes and Templates
In reply to: [Bold Headline] Post title & Description Font SizeNevermind I figured it out, I forgot to add “!important” to the end of font-size like this:
h1.entry-title {
font-size: 24px !important;
font-size: 2.4rem;
}Thanks
Forum: Themes and Templates
In reply to: [Bold Headline] footerMy bad. Thanks for the correction Christine.
Forum: Themes and Templates
In reply to: [Bold Headline] footeredvinaspauza, just remove this code from the footer.php:
</div><!-- #main --> <footer id="colophon" class="site-footer" role="contentinfo"> <div class="site-info"> <?php do_action( 'bold_headline_credits' ); ?> <a href="https://www.ads-software.com/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'bold_headline' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'bold_headline' ), 'WordPress' ); ?></a> <span class="sep"> | </span> <?php printf( __( 'Theme: %1$s by %2$s.', 'bold_headline' ), 'Bold Headline', '<a href="https://bluelimemedia.com/" rel="designer">Bluelime Media</a>' ); ?> </div><!-- .site-info --> </footer><!-- #colophon --> </div>*/<!-- #page -->
It’s best to create a child theme first and then add the footer.php to it’s directory.
How to create a child theme: https://codex.www.ads-software.com/Child_Themes OR watch this video: https://www.youtube.com/watch?v=PwoXIscTF8U