TouchCoding.net - Øyvind Sæther
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Blue Planet] Slide Images Too LargeHi Dab0927!
Try making the images smaller. It looks like they are quite big.Forum: Themes and Templates
In reply to: Harmonic Template FooterHi there!
You can edit the footer be going to the footer.php file here you will find the “Proudly powered by WordPress”. You can change this into what you want.Get back to me if you need any more help 🙂
Forum: Themes and Templates
In reply to: [Make] Global font overriding menu font how to hide author?Hi Helr!
Can you give me a link to your site please.Forum: Fixing WordPress
In reply to: How to remove white space below and next to header?You could use media queries to modify your site with css. I don’t know exactly what your after, but here’s something you could look at: http://www.w3schools.com/css/css3_mediaqueries.asp
Forum: Fixing WordPress
In reply to: How do I enable a different header image to each page. 2011 ThemeHi Reacttwo!
Yes! There is a very easy way to do this built into the theme itself. Simply select the header image you want as the featured image on the edit page. That’s how simple it is 🙂Get back to me if you need any more help 😉
Forum: Fixing WordPress
In reply to: [Page] unkonow error please helpHi there!
I’m having some trouble finding your error. Maybe you can take a picture of the error and explain where the error is?
ThanksForum: Fixing WordPress
In reply to: Image display upside downHi queensofafricauk!
Can you please tell me which pictures you’re talking about? I can’t seem to find them.Forum: Fixing WordPress
In reply to: Need to center a top navigation menuHi there lonegijoe!
Can you please send me a link to your website so it’s easier for me to see the problem?Forum: Fixing WordPress
In reply to: How to remove white space below and next to header?Are you sure you added the code the right way, Moveya?
Here is a tutorial for you: [Link redacted]
I hope that helped you out and you managed to add the css correctly 🙂
Forum: Fixing WordPress
In reply to: How to remove white space below and next to header?Hi there Moveya! Øyvind here 🙂
Your problem can easily be fixed with just some css styling 😉
I don’t know how much experience you have with css, but what you need to do is to copy this code either into a child theme or a custom css plugin.
Here is the code:
site-header { background-image: url('http://www.moveya.nl/wp-content/uploads/2015/09/wallpaperte.png'); background-repeat: repeat; background-position: top center; background-attachment: scroll; } site-container { padding: 0; } site-header-right { display: none; }I hope that solved your problem, if not get back to me 🙂
Forum: Fixing WordPress
In reply to: Change background color of the mobile menuGlad I could help you, Federico! 😀
I’ll be sure to check that out 🙂 Looks like it’s a lot of good stuff there 🙂Forum: Fixing WordPress
In reply to: Change background color of the mobile menuHi Frederico!
I understand what your problem is, but thanks for your screencast video 🙂Are you sure it’s not working? That’s the only color attribute to that menu. Try adding the “!important” at the end. This will force it to override any other color attribute.
like this
.transparent-header #headerwrap.fixed-header #main-nav > li > a { color: #000 !important; }Forum: Fixing WordPress
In reply to: Change background color of the mobile menuHi! Glad I could be of help to you, Federico!
Try this css:.transparent-header #headerwrap.fixed-header #main-nav > li > a { color: #000; }That should keep it black(or change the number if you want another color)
Cheers
Øyvind TouchcodingForum: Fixing WordPress
In reply to: sticky navbarTry this jQuery(add it to your script file or create a new one):
$(document).ready(function () { var menu = $('.menu'); var origOffsetY = menu.offset().top; function scroll() { if ($(window).scrollTop() >= origOffsetY) { $('.menu').addClass('sticky'); $('.content').addClass('menu-padding'); } else { $('.menu').removeClass('sticky'); $('.content').removeClass('menu-padding'); } } document.onscroll = scroll; });Edit the classes and this should give you the effect you were looking for 🙂
Forum: Fixing WordPress
In reply to: sticky navbarIf you want that, you need to apply som jquery to trigger the css I give you only when you have scrolled down to a certain point. But the same code as I provided.
Cheers
Øyvind
[Signature moderated]