-
DewlanceHosting reacted to a post in a topic:
Help: Google Chrome Font issue (Look good on Firefox but not on chrome)
-
How to Show and Hide the menu Bar
You could use something like this: EDIT: Of course, change the CSS etc so you can make it the way you want it. This was just an example. HTML <dl> <dt><a href="http://jquery.com/">jQuery</a></dt> <dd> <ul> <li><a href="http://jquery.com/src/">Download</a></li> <li><a href="http://jquery.com/docs/">Documentation</a></li> <li><a href="http://jquery.com/blog/">Blog</a></li> </ul> </dd> <dt><a href="http://jquery.com/discuss/">Community</a></dt> <dd> <ul> <li><a href="http://jquery.com/discuss/">Mailing List</a></li> <li><a href="http://jquery.com/tutorials/">Tutorials</a></li> <li><a href="http://jquery.com/demos/">Demos</a></li> <li><a href="http://jquery.com/plugins/">Plugins</a></li> </ul> </dd> <dt><a href="http://jquery.com/dev/">Development</a></dt> <dd> <ul> <li><a href="http://jquery.com/src/">Source Code</a></li> <li><a href="http://jquery.com/dev/bugs/">Bug Tracking</a></li> <li><a href="http://jquery.com/dev/recent/">Recent Changes</a></li> </ul> </dd> </dl> CSS <style> body { font-family: Arial; font-size: 16px; } dl { width: 300px; } dl,dd { margin: 0; } dt { background: #F39; font-size: 18px; padding: 5px; margin: 2px; } dt a { color: #FFF; } dd a { color: #000; } ul { list-style: none; padding: 5px; } </style> jQuery <script src="scripts/jquery.js" type="text/javascript"></script> <script> $(document).ready(function(){ $("dd:not(:first)").hide(); $("dt a").click(function() { $("dd:visible").slideUp("slow"); $(this).parent().next().slideDown("slow"); return false; }); }); </script>
-
Help: Google Chrome Font issue (Look good on Firefox but not on chrome)
Just tried on Firefox 33 and Chrome 38.0.2125.111 - both look fine. And please, for the love of god, please don't use symbols ® and spaces in file names... URL's look horrible with %20 in it. And I have no idea why you would need a ® in your file name anyway.
-
Please help me...
You're better off contacting your domain name registrar (for instance godaddy.com, crazydomains etc.) and getting help. If it's a problem on their end, then they'll be better suited to help you. We can't really help much unless we know whether you're putting in the wrong information, wrong domain type (A, AAA etc) or if it's a background problem with the actual registrar
-
Honours Degree Project - Help?
sublime 3.. the text editor I don't know ruby or node.js or anything. My project is specifically php, mysql, jquery etc.
-
automatically redirect iframe to mobile version on web
Majority of websites these days are responsive, so when you go on to that website on a mobile device (whether a smartphone or a tablet) the website is automagically designed for mobiles. The problem is that even if your iFrame is mobile-friendly (iframes suck imo), some websites may not. Which means your iframe will be the same dimensions of your device, but the website you're displaying will have scrollbars etc in them. If we had more of an understanding of what this would be used for, we may be able to give a better solution.
-
Honours Degree Project - Help?
Hi there, I currently study at UWS Paisley in Scotland. I'm on my 4th year (Honours Degree) doing Mobile & Web Development. My project for the whole year is to build a responsive website based on selling 4 categories of pets: rodents (rats, mice, guinea pigs), reptiles (snakes, iguanas and so on), Cats, and Dogs. tl;dr - What's the best way to go about this? For this website, someone who wishes to sell their pet will have to sign upto the website. After doing so, they can post an ad. The ad will have a lot of informaiton and store it on a mysql database using mysql and pdo. Would I be better designing the website myself, just using photoshop and then coding it on sublime 3, or would it be better to use some sort of CMS? I can do it coding manually, and I could have a ?ad=2598230952 or something which is easy enough, but I'm unsure of the rest. It's literally going to be similar to gumtree, where someone can post an ad, other people can view it, and you can sign in to reply to the ad etc. I just need to know what the best way to do this is. Thanks
- What's the font?
- New hosting service for designer
-
No idea where to start
There are a lot of frameworks you could use. There's one called the "Skeleton" framework, which is a small framework with 3 content areas in the middle, reduce it to mobile size and it only shows one till you scroll down etc. There's also the 960 grid system, although that requires you to have knowledge in web development if you're building it yourself. If it's just a basic portfolio style, then you could just use wordpress (if you don't want to build it yourself) and just use a theme since they're all responsive.