008Rohit
Forum Replies Created
-
Yep, WP-Admin -> Appearance -> Header.
You can choose custom background color there. Make sure you remove the header image first by clicking on a button there.
Try using the WP.me short URLs maybe? Install JetPack plugin and enable WP.me short URLs.
Forum: Themes and Templates
In reply to: [Theme:Gamepress] No page buttons, only "older posts"You can use a plugin to insert code before the closing </body> tag. You can as well edit footer.php using a child theme and add your bits of code before </body>.
Your present pagination looks well-matched to the theme.
The ‘shrinking’ doesn’t work like that.
You can put as many @media (max-width)’s as you want and set unique font sizes for each of them.
Forum: Themes and Templates
In reply to: [Theme:Gamepress] No page buttons, only "older posts"Are you looking for a different design? You can simply modify the CSS instead of changing the plugin altogether. Google for “WordPress Pagination Custom CSS” to get more styles.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Changing the Post Navigation links coloursForum: Themes and Templates
In reply to: [Twenty Thirteen] Changing the Post Navigation links coloursI had got rid of
.meta-nav a, .nav-links a, .post-navigation a { color: #004c7c; }
and replaced it with,
.post-navigation .nav-links a { color: #004c7c; }
Still it wouldn’t work unless I add an !important.
BTW, I read somewhere that we should reduce the use of ‘!important’ as much as possible. I’d like to know why.
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Changing the Post Navigation links coloursBecause of this:
<nav class="navigation post-navigation" role="navigation"> <h1 class="screen-reader-text">Post navigation</h1> <div class="nav-links"> <a href="https://test.techtage.com/just-another-shitty-test-post-1/" rel="next">Just another shitty test post #1 <span class="meta-nav">→</span></a> </div><!-- .nav-links --> </nav><!-- .navigation -->
Shouldn’t .nav-links over-write .navigation’s values anyway?
Forum: Themes and Templates
In reply to: [Twenty Thirteen] Changing the Post Navigation links coloursThanks for your help.
This did it:
.post-navigation .nav-links a { color: #004c7c !important; }
Any idea why the ‘!important’ part had to be used?
Andrew, that works like a charm! Thanks. ??
What was the technical fault with the height being set explicitly?
Forum: Themes and Templates
In reply to: [Theme:Gamepress] No page buttons, only "older posts"Use a plugin like WP-Paginate.
Did that, no use.
Ohh. I think I did that because min-height didn’t work.
Well, that’s what I did (I think). See how other things get messed up.