TouchCoding.net - Øyvind Sæther
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sparkling] change color 3 bars of the responsive menuHi dankolamers!
To change it to white, use this css:.navbar-default .navbar-toggle .icon-bar { background-color: #fff; }Remember to use either a custom css plugin or a child theme.
Forum: Fixing WordPress
In reply to: How do I enable a different header image to each page. 2011 ThemeGlad you manage to fix it, even though it took a while 🙂
Forum: Fixing WordPress
In reply to: How do I enable a different header image to each page. 2011 ThemeI didn’t mean to post your admin login information here, you should never do that.
I looked at you site and none of the pages seems to have any of the standard images. which page is wrong?
The image needs to be bigger then 461. I think every header image needs to be 1000px.
I’m really sorry about this and that you’re giving up. I can’t help you more then this on this forum, but if you need any more help please will free to contact me or another developer to have a look at your site.
Sorry I could not help you more Derek 🙁
Forum: Fixing WordPress
In reply to: How do I enable a different header image to each page. 2011 ThemeMaybe you can send me a link to your site, and what page 2 is, so I can have a look at it? 🙂
Forum: Themes and Templates
In reply to: [Make] Global font overriding menu font how to hide author?Glad I could help you Helr! 😀
Forum: Fixing WordPress
In reply to: How do I enable a different header image to each page. 2011 ThemeWhat size is your header image on page 2? Maybe it’s too small. Try to make it the same size as the sample images provided by the theme.
Forum: Fixing WordPress
In reply to: How do I enable a different header image to each page. 2011 ThemeThanks for your help Mahefa, but I am already telling him that.
Forum: Fixing WordPress
In reply to: How do I enable a different header image to each page. 2011 ThemeI think you are overthinking this:
Just edit the post or page and click on “set featured image”, like in the image below: http://postimg.org/image/6xx99ab7x/
Forum: Themes and Templates
In reply to: [Make] Global font overriding menu font how to hide author?It looks like you’re having some margin-bottom applied in your css. To remove it copy and paste this code:
.site-footer .widget-area { margin-bottom: 0; } .widget { margin-bottom: 0; } @media screen and (min-width: 800px) .site-footer .widget-area { margin-bottom: 0; }Teak the numbers to what you want. I have removed the margin-bottom completly, but if you want some margin you can use for example 2rem. Hope that helped 🙂
Forum: Themes and Templates
In reply to: [Make] Global font overriding menu font how to hide author?1. I tried using CSS to change the font and it worked. If I understood you correctly you want to change the nav menu font-family from “Corda” to “Open Sans”, right?
This is the code I used:
.site-navigation .menu { font-family: "Open Sans", Helvetica, Arial, sans-serif; }2. I applied my CSS to the .entry-author only, and by using the !important. The “!important” will make it override any other statement.
Here is the code I used:
.entry-author { display: none !important; }If you are struggling to apply css, I made a tutorial on just that: [Link redacted]
Hope that solved it.
Forum: Themes and Templates
In reply to: Harmonic Template FooterWhen I look at the site it’s still there.
The code I remove is this:
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>That “a-tag” is what generate the “Proudly powered by WordPress” link. Hope that helped a little more.
Forum: Themes and Templates
In reply to: Harmonic Template FooterNo, but you need to copy the footer.php into your own child theme folder and then modify that one.
Forum: Themes and Templates
In reply to: Harmonic Template FooterI’m glad to hear 🙂 “display: none;” will make it not appear, but if you want to change what is displayed you can modify the footer.php
But glad I could help anyways 🙂
Forum: Themes and Templates
In reply to: Harmonic Template FooterHere is something that might help: https://codex.wordpress.org/Child_Themes
Get back to me if you need more help 🙂
Forum: Themes and Templates
In reply to: Harmonic Template FooterWhich footer.php are you editing? The one inside your theme folder?
You need to make a child theme and copy the footer.php over to the child theme. Modify the footer.php after that and it should work.