Search results

  1. AusQB

    Page Doesnt Display Correctly

    Some things work for certain browsers which don't work on others. Could we perhaps see some of your code?
  2. AusQB

    Placement of CSS Code

    It's perfectly acceptable, but it's just good practice to use id's and classes rather than inline styles.
  3. AusQB

    Tools of the trade

    What software do you use for designing graphics? I myself am using Photoshop CS4 for all my graphics. I also recently installed CorelDRAW X4 because everyone kept telling me it was amazing for graphic design, but it's going to take me a while to get used to it. I've managed to get a...
  4. AusQB

    How much should I charge?

    For a site with only a few pages, I would charge per page. Perhaps something in the order of US$35 per page.
  5. AusQB

    Noshade attribute for <hr/>

    That worked great. Thanks.
  6. AusQB

    Quick Tag Editor

    I've never heard of a "quick tag editor". It's just a standard IDE feature.
  7. AusQB

    need css help

    For what exactly? I added the id since, if you left it like it was, you would end up with something like this in the CSS: #menu ul li a{ } Stacking elements just looks messy and I'm not quite sure it works properly like that.
  8. AusQB

    need css help

    Change your code as follows. I gave the id "nav" to the list, just to make things cleaner in the CSS. HTML: <div id="menu"> <ul id="nav"> <li><a href="#"> Test </a></li> <li><a href="#"> Test </a></li> <li><a href="#"> Test </a></li> <li><a href="#"> Test </a></li>...
  9. AusQB

    iPhone icon style images

    Does anyone know a good tutorial for making images with an effect similar to that of the icons on an iPhone? I'm not trying to make the icons themselves, I'm trying to replicate the effect on a larger size.
  10. AusQB

    Noshade attribute for <hr/>

    Is there an XHTML equivalent for the noshade attribute?
  11. AusQB

    Changing Colors

    Try creating a solid disc which will be the colour for the lines, and then cut out the shapes between the lines and paste them on top of the disc. This way you can change the colours of both the lines and the shapes independently. I hope the image is a simple one to work with, rather than...
  12. AusQB

    Nav bars - tables vs lists

    I'm having trouble converting a single row table into a list. I can't seem to use the images in the list items (is that possible?). Also, how do I stretch the list out like the table does? Here is my code: <div id="navbar"> <ul> <li id="homebutton"><a href="index.php">HOME</a></li>...
  13. AusQB

    Font family

    I don't quite understand yet why people list multiple fonts for the font-family attribute. How does it determine which font to use? Wouldn't you just define a new font-family if you want a different font for a specific element?
  14. AusQB

    Copying source does not yield same results: Help required

    See this line? <link rel="stylesheet" type="text/css" media="screen" href="/kvmlm2/css/layout-home.css"> It is a link to an external file called a CSS page. It determines how things look on a page. Without that, the page looks pretty much like nonsense. You cannot simply copy a website and...
  15. AusQB

    Compress PNGs

    The size came from the fact that the base image is very high quality. For now I'm going to leave it until I decided exactly how I'm going to arrange images on the site, which is proving to be the most difficult part. My temporary solution was to break it up into a JPEG for the main part, and...
  16. AusQB

    Text vs images

    I find that it's hard to get text and images to blend well aesthetically, particularly if you're designing a more stylish website. My solution of course is to simply render the text as part of the image, the obvious drawback of which is that it leaves no content for search engines to analyze...
  17. AusQB

    SSI Problem

    Make sure your server can run SSI scripts. Follow this tutorial for more information: http://www.htmlgoodies.com/beyond/webmaster/article.php/3473341
  18. AusQB

    SSI Problem

    Replace FILE with virtual.
  19. AusQB

    Dynamically change element height

    How can I use the attributes screen.availHeight and screen.availWidth to ensure that the bottom of the footer is always at the bottom of the screen?
  20. AusQB

    Setting a div to 100% screen height

    I imagined this being as simple as setting a single <div> under <body> at height:100%. Guess not. Through a few tutorials, I have this code in my CSS: body { background: #FFFFFF; height: 100%; text-align: center; } div#container { display: block; height: 100%; margin: 0 auto...
Top