Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Qwibble

Members
  • Joined

  • Last visited

Everything posted by Qwibble

  1. Qwibble replied to Qwibble's topic in Frontend
    Hmm, well this isnt for a blog. If it can be done in php or javascript, then it'd be nice. I can handle them both with a basicish knowledge, and I like to learn from this sort of thing.
  2. Qwibble replied to Qwibble's topic in Frontend
    Anyone? Im guessing this is a css/javascript thing.
  3. I can see it from that point of view, and Im in no ways against it, its a clever concept, but it needs refining.
  4. No idea, but i found them a bit OTT and some confusing as to where i was going with what link.
  5. So basically, you want the background image to be the right size to be behind what you have now, and then If anything more is added, you get a scrollbar?
  6. Qwibble posted a topic in Frontend
    So I remember seeing something on here a couple days ago. It was near to what I'm now looking for, but I've searched everywhere and cant seem to find it which is a bit of a bummer. http://www.rockpoint.cz/ What I'm looking for is something similar to this scrolling product here, which I can easily customise to insert my own news stuff, aswell as changing the images. I had a look around their code, but some of the javascript includes a foreign language, If im looking at the right one, so thought best to ask here, and see what resources and tutuorials are available. Can anyone point me in the right direction, or help me out?
  7. Thats absolutely perfect, If only I'd known what that kind of menu was called, it would have been easier Cheers for the help mate, now got a sexy new nav bar.
  8. Hmm think im onto one. http://users.tpg.com.au/j_birch/plugins/superfish/#examples Hit Nav-bar style. I'll try it out and see how it goes =D
  9. Not exactly what I was looking for, but thats very useful for spicing it up afterwards. Ty. Does anyone know of a tutorial, or can show me how to create the sub menus on hover over in the bottom row? Thats what I'm after primarily.
  10. http://oneightylife.com/main5.html Im looking to create a similiar navbar to what is used in the site above. Something I can edit sizes and images and hovers and things with. I've searched for a tutorial or help everywhere and I cant seem to find anything but drop down menus which isnt what im after. Can anyone lend a helping hand here?
  11. Dont worry, I've come up with something different to do it. I'll post my solution/ new problems , as I go. Atm its looking good, but I've run into a slightly different problem.
  12. Hmm, or is CSS the way to go with its fast loading, and less chances of the user not being able to see it?
  13. Hi guys, Been looking for a great web community to help me solve my problems, and push me to keep learning web designing languages. Currently I hava good grasp and knowledge of html and css, and am learnig the basics of php and javascript. Looking forward to getting to know people, checking out your awe dropping designs, and learning along the way, to improve the design, functionability, and easiness to update of my site. If your interested, its a clan site for a FPS called Combat Arms Europe. Yes its free hosting, and the original template was not mine. Creating a hawt design myself is something I'm looking to do in the future. Anyways, Hai
  14. So being someone with a decent knowledge of css and html, and learning php, I've found myself looking at some of the things that javascript can do and found them to be something that I'd love to impliment into my site. What I'm trying to do is create a basic clan roster on my site, where each member has one row in a table, with several fields, and on clicking this persons row, it takes them to their main profile page. The problem isnt with getting the tablerow background to change on mouseover, nor with linking to a page. I've tried my best and managed to hurdle these as a javascript newbie. The problem I face however, is that the Javascript seems to be wanting to add a border around each cell, which yes I want, but not like its doing as its not the effect im looking for. I'm rather looking to create the border using css and leave the Javascript to simply take care of the row link, and the rwo background on mouse over. So heres what I'm currently seeing with my current code [Link], when instead of a 2pixel black border seperating the cells/background images, I'm looking for the 1 pixel black cell divider that I have in the main profile that can be seen here [Link] (yes its not appearing around some cells because they contain no data cause the ranking parser is down but thats not the problem - you hopefully see what I'm looking to achieve). I dont see why its not possible, but similarly, I dont see why Javascript is doing this. Heres the code im using (its also viewable through page source) Script + Style <script language="JavaScript" type="text/javascript"> <!-- img=new Image(); img.src='images/bar_3.PNG'; function CngBG(obj,nc){ obj.nc=obj.className; obj.className=nc; obj.onmouseout=function(){ this.className=this.nc; } } function DoNav(theUrl) { document.location.href = theUrl; } //--> </script> <style type="text/css"> <!-- .td1 { background-Image:url('images/bar_1.PNG'); } .bg2 { background-Image:url('images/bar_3.PNG'); } --> </style> Table - Several rows to show whats up <table border='0' cellpadding='5' width='100%' class="tableborder1"> <tr class="td1" onmouseover="CngBG(this,'bg2');" onclick="DoNav('profile.html?user=Qwibble');" > <td class='style3' width='20' height='34'> <center><img src='ranks/20.gif' title='General of the Army' /></centeR> </td> <td class='style3' height='34'> Name </td> <td class='style3' height='34'> Joined : xx/xx/xx </td> <td class='style3' height='34'> Member </td> <td class='style3' width='5' height='34'> <img src='images/flags/uk.gif' title='United Kingdom' /> </td> </tr> <tr class="td1" onmouseover="CngBG(this,'bg2');" onclick="DoNav('profile.html?user=Qwibble');" > <td class='style3' width='20' height='34'> <center><img src='ranks/20.gif' title='General of the Army' /></centeR> </td> <td class='style3' height='34'> Name </td> <td class='style3' height='34'> Joined : xx/xx/xx </td> <td class='style3' height='34'> Member </td> <td class='style3' width='5' height='34'> <img src='images/flags/uk.gif' title='United Kingdom' /> </td> </tr> <tr class="td1" onmouseover="CngBG(this,'bg2');" onclick="DoNav('profile.html?user=Qwibble');" > <td class='style3' width='20' height='34'> <center><img src='ranks/20.gif' title='General of the Army' /></centeR> </td> <td class='style3' height='34'> Name </td> <td class='style3' height='34'> Joined : xx/xx/xx </td> <td class='style3' height='34'> Member </td> <td class='style3' width='5' height='34'> <img src='images/flags/uk.gif' title='United Kingdom' /> </td> </tr> <tr class="td1" onmouseover="CngBG(this,'bg2');" onclick="DoNav('profile.html?user=Qwibble');" > <td class='style3' width='20' height='34'> <center><img src='ranks/20.gif' title='General of the Army' /></centeR> </td> <td class='style3' height='34'> Name </td> <td class='style3' height='34'> Joined : xx/xx/xx </td> <td class='style3' height='34'> Member </td> <td class='style3' width='5' height='34'> <img src='images/flags/uk.gif' title='United Kingdom' /> </td> </tr> <tr class="td1" onmouseover="CngBG(this,'bg2');" onclick="DoNav('profile.html?user=Qwibble');" > <td class='style3' width='20' height='34'> <center><img src='ranks/20.gif' title='General of the Army' /></centeR> </td> <td class='style3' height='34'> Name </td> <td class='style3' height='34'> Joined : xx/xx/xx </td> <td class='style3' height='34'> Member </td> <td class='style3' width='5' height='34'> <img src='images/flags/uk.gif' title='United Kingdom' /> </td> </tr> <tr class="td1" onmouseover="CngBG(this,'bg2');" onclick="DoNav('profile.html?user=Qwibble');" > <td class='style3' width='20' height='34'> <center><img src='ranks/20.gif' title='General of the Army' /></centeR> </td> <td class='style3' height='34'> Name </td> <td class='style3' height='34'> Joined : xx/xx/xx </td> <td class='style3' height='34'> Member </td> <td class='style3' width='5' height='34'> <img src='images/flags/uk.gif' title='United Kingdom' /> </td> </tr> </table> These cells in the future will be automatically updated from a databse and a ranking parser, but for now I'm looking to get the basics working. Cheers for anyone that can give some help, and explain so as to shed some light on this. I'm always open to learning new stuff, and since I'm a somewhat new person to Javascript, would be great to learn where the error is. Qwibble~

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.