0mar32
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Make website appear in Fullscreen on iPadit used to make the website resize by percentages so it takes what width it can find on the screen used by the viewer
Forum: Fixing WordPress
In reply to: Make website appear in Fullscreen on iPadThere’s the Edit CSS that comes with the Jetpack plugin and there’s a “Custom CSS” option in the theme’s settings as well.
Forum: Fixing WordPress
In reply to: Make website appear in Fullscreen on iPadI did not purchase the theme, I got it for free from their website, all I ask for is a way to make my website appear like any normal website, no matter how wide it is and enable zooming in and out on the iPad as that is also not working due to the set width in the mediaqueries.css file.
I need help as I’m not a professional in any of this, I just pick information up as I go along so if anyone can help, please ?
Forum: Fixing WordPress
In reply to: Make website appear in Fullscreen on iPadThis is ridiculous, can anyone help me please ?
Forum: Themes and Templates
In reply to: My theme auto resizes horribly, need to prevent resizingCan anyone help me figure out how to make it appear in full screen and zoom in and out on mobile devices such as the iPad, iPhone ?!
[No bumping, thank you.]
Forum: Themes and Templates
In reply to: My theme auto resizes horribly, need to prevent resizingWell, I didn’t unlink it, what I did was set a fixed 978px width but this is actually showing screwed up on an iPad where I can’t zoom in or out(The issue of zooming in and out has been there before editing mediaqueries.css)
What can I do about that, I need it to appear fullscreen on whatever resolution it’s outputted on (Should I set each value using its pixel value instead of percentage value ?)
Forum: Fixing WordPress
In reply to: How to make a new custom 404 page, NOT WORKING!I don’t know why but it won’t work on localhost so I’m giving up on that till I start working on the actual domain, thanks for your help!
Forum: Fixing WordPress
In reply to: How to make a new custom 404 page, NOT WORKING!It’s not theme specific, I need to know how to enable a custom 404 page on localhost on any theme what-so-ever
Forum: Fixing WordPress
In reply to: New Logo appears after header is scrolled down like TechCrunch.comwhy has this topic been marked as resolved ? it hasn’t been resolved
Forum: Fixing WordPress
In reply to: New Logo appears after header is scrolled down like TechCrunch.comwhat do you mean ?
Forum: Fixing WordPress
In reply to: New Logo appears after header is scrolled down like TechCrunch.comForum: Fixing WordPress
In reply to: New Logo appears after header is scrolled down like TechCrunch.comHere it is!
Forum: Fixing WordPress
In reply to: New Logo appears after header is scrolled down like TechCrunch.comI’m setting up offline at the moment, which files do you need the code from exactly, sorry as I told you I’m a beginner
Forum: Fixing WordPress
In reply to: New Logo appears after header is scrolled down like TechCrunch.comActually I have a header by default without the sticky menu-like TechCrunch and the one I want to stay hidden behind the header I have now is over the button box, I’m not too HTML, CSS or Java Script savvy, I just copied the code given on one site and edited what I could figure out, please consider me a beginner and walk me through it if you can
Forum: Fixing WordPress
In reply to: New Logo appears after header is scrolled down like TechCrunch.comThis is currently what I’m using but using this I have the bar up top just like I need but the logo that I want to appear after scrolling past the header is showing at all times and I don’t know what to do!
[ Moderator note: Please use the code button or backticks instead of blockquote. ]
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>onscroll_change</title> <style> #container { width:1000px; height:35px; margin:auto; } #header { width:1000px; height:35px; } #header img { z-index:2000000; } #content { width:100%; height:100%; } .button_box { height:40px; width:100%; float:left; position:fixed; margin:auto; z-index:2000000; background:#cccccc; } .button { height:40px; width:auto; margin:0 10px; float:right; font-size:16px; line-height:32px; color:#03F; } .logo { height:200px; width:300px; float:left; } </style> <script type="text/javascript"> document.getElementById(body).scr function scrolldn() { document.getElementById('header').style.height="40px"; document.getElementById('logo').style.height="40px"; document.getElementById('logo_img').style.height="40px"; document.getElementById('logo_img').style.width="auto"; } function scrollup() { document.getElementById('header').style.height="200px"; document.getElementById('logo').style.height="200px"; document.getElementById('logo_img').style.width="300px"; document.getElementById('logo_img').style.height="auto"; } </script> </head> <body style="margin:-5px 0 0 -5px;"> <div class="button_box"> <img src="http://www.switchedonblog.dev/wp-content/uploads/2012/08/Scroll-Header-Test1.png" style="float:left; margin:40px 0 0 400px; z-index:-1; position:fixed;" /> <div class="button"><a href="http://www.switchedonblog.dev/?page_id=148">Contact Us</a></div> <div class="button"><a href="#">Button 2</a></div> <div class="button"><a href="#">Button 3</a></div> <div class="button"><a href="http://www.switchedonblog.dev/?cat=3">Apple</a></div> <div class="button"><a href="http://www.switchedonblog.dev/">Home</a></div> </div> <div id="container"> <div id="header"> </div> </div> </body> </html>