Search results

  1. jnjc

    text formatting

    You have set the whitespace to nowrap in your .css, this is why it won't wrap. There are a couple of problems with your .css but make the changes I have outlined below and it should get you on the right path. Remove the lines I have highlighted from your css.css file: .content {...
  2. jnjc

    Echo MySQL error

    Try adding the follow at the top of your PHP File: <?php error_reporting(E_ALL); This might shed some light
  3. jnjc

    Best CMS to use for a novice?

    I just started looking at CMS packages and Joomla was the one I have settled on. It' pretty easy to pick up and very user friendly. The only downside to it so far is that I have found the official forum pretty unresponsive.
  4. jnjc

    Question about the Microsoft Front Page

    If you have your original install media you can install Frontpage from it using custom install. Version 2003 sits fine with the latest version of office.
  5. jnjc

    print.css file to omit background ??

    Two points: 1) I don't think you'll have to do anything to achieve this, I have a feeling that most browsers won't print background images anyway (I haven't test this in a while so I am not 100% sure). 2) use the "media" parameter like this: <link rel="stylesheet" type="text/css"...
  6. jnjc

    Visited link - graphic changing?

    Easy, make two .gifs for each link and then in your style sheet use :visited to set the image for visited links: #link1 { background-image: url("1.gif"); } #link1:visited { background-image:url("2.gif"); } Then your link <a id="link1" ...... HTH, JC
  7. jnjc

    Fully Dynamic Nav bar help

    What you are suggesting is not "that" difficult. You will probably have to look at using one of the JS libraries for animation effects etc. There are loads but the ones I tend to end up using are: Mootools YUI jquery So you would need some sort of animation effect triggered when...
  8. jnjc

    Is this a flash gallery?

    This kind of control is more of a slideshow than a gallery, I make the point because it might make searches easier for you. There is tonnes of code out there to do this either flash or JS (my preference). One example of doing the same without flash is...
  9. jnjc

    Different browser CSS Problem- pls help

    It's left aligned when I view it in Mozilla.
  10. jnjc

    css positioning

    I am not 100% sure if I have the right end of the stick here. But If you are just trying to stop the "Free Music" menu option wrapping when the browser is re-sized then use the "white-space" property in your style as follows: #top #t1 { background-color:#CC3300; float:left...
  11. jnjc

    A Few Design Q's

    For better information on how you site is ranked, submitting a sitemap and indexing statistics check out Google Webmaster Tools. Analytics will give you information on numbers of visitors etc Webmaster tools is geared more towards google indexing etc. HTH, JC
  12. jnjc

    help with jpeg html embedding

    I am not a photoshop expert, but as far as I know you can't embed sound into a .jpg. The file format just doesn't support it.
  13. jnjc

    Simple database

    I would imagine your best bet would be to use a combination of PHP and MySQL Database. There are a number of reasons to go this road not the least of which are: 1) Most hosting companies will have some version of both of these available 2) They are both free. An XML file will work but...
  14. jnjc

    Auto-Date

    To make the link dynamic is pretty easy, this should do what you need: <script type="text/javascript"> function getMonthFile() { var months = new Array(12); today = new Date(); months[0] = "Jan"; months[1] = "Feb"; months[2] = "Mar"; months[3] = "Apr"; months[4] = "May"; months[5] =...
  15. jnjc

    css ie6 fix

    For this particular issue you could just put it into the .body and not have a separate .css for IE....
  16. jnjc

    css ie6 fix

    IE applies a default margin and padding to things, FF doesn't. Try this: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type"...
  17. jnjc

    Problem with CSS Tabs

    I don't think there is a quick fix for this issue. Where did you get the code for the tabs ? There seems to be an inbuilt flaw with it. What is happening is: You have two divs inside a wrapper (#container2), one for each tab. One div is sitting on top of the other and the wrapper...
  18. jnjc

    Adapting for Larger Screen Resolutions

    You need to center your main content div. something like this in your CSS #MainDiv { margin:0 auto; text-align:center; } If you post a link to your site I can give you more detailed information. HTH, JC
  19. jnjc

    Help with CSS CLASS vs ID override

    Try removing the space between 'li' and '.currentpage' like this: #menu li.currentpage a { background-position:center top; } HTH, JC
  20. jnjc

    Report Spam Thread

    http://www.webdesignforum.com/19928-post1.html Spam, multiple posting of same topic, promoting your own site/forum and posting of sites with affiliate ID's is not allowed.
Top