Search results

  1. jnjc

    PHP text scroller?

    Just had another thought, what is the name of the file you put this code in ? If it doesn't have a .php extension then it won't work...
  2. jnjc

    IE problem with my site

    At a guess I'd say it's got to do with the height of sidebar1. For some reason in IE you have more space than FF. Try adjusting the vertical-align of sidebar1 and see if it makes any difference. Let me know how you go and if you are not getting anywhere I can have a look a little later...
  3. jnjc

    PHP text scroller?

    It should work, check it out here: http://www.solasit.com.au/sandbox/webdesign/marquee Can you post a link to where you have it so I can have a look ?
  4. jnjc

    How to optimize PHP & MySql to speed up your blog site?

    I am not sure if optimising you DB should be your focus. There are other things that will help your site render quicker. Things like: Move your JS files to the bottom of the page Minify your JS files Reduce you HTTP requests by combing multiply files. ie. If you have 3 .css files...
  5. jnjc

    Rollover Problem in IE and Safari

    Can you post a url ? 'onmouseout="MM_swapImgRestore()" ' is JS which we would need to be able to look at before we could help... Failing that post more of the page....
  6. jnjc

    Help with Spry Collapsible Panels

    So what section of this page do you want to be in the spry table ? At the moment on this page, you have text, four thumbs and a collapsible panel with more thumbs ? Maybe it's me but I'm not sure what you are trying to achieve....
  7. jnjc

    IE problem with my site

    You need to change your .css http://www.corradocomputers.com/twoColLiqLtHdr.css Around line 57 (in the section .twoColLiqLtHdr #mainContent) you have width:818px; If you change this to width:815px You should be good. HTH, JC
  8. jnjc

    Div overflow "scroll" causes horizontal scrollbars

    Set your overflow to auto instead of scroll and you should be good.
  9. jnjc

    How to make a page load dynamically?

    If your concern is loading of the header content, you will have no real aesthetic value using ajax calls. And it will definitely have a negative effect on web crawlers. Also your users won't be able to bookmark particular pages or use the back buttons etc. without you putting in a lot of...
  10. jnjc

    iFrames in Dreamweaver CS3

    I stand corrected, it does work and it is a much better way of doing it then the method I suggested. The reason it wasn't working for me is because I used an 'id' on the iframe whereas I should have used 'name'. Thanks, JC
  11. jnjc

    How to chmod files and dirctories via SSH

    What you are describing is actually a bit tricky. One way you could do it is: chmod 0644 -R * which will change all files and directories. Then use something like this: du | awk '{print "chmod 0644 " $2}' | sh -v which will change all directories. Do the commands in this order...
  12. jnjc

    How to use base href?

    I am not 100% sure I understand what you are trying to achieve but I'll have a go anyway. if you have www.somedomain.com and your css is located at www.somedomain.com/css/myfile.css then to reference this file use "/css/myfile.css" the leading "/" will tell the browser that the path...
  13. jnjc

    How to make a page load dynamically?

    I wouldn't worry about this. On each page have you header etc. your browser will cache images and .css etc. so it won't look like you header is loading each time (I pretty sure this is how this page is structured). If you start using ajax calls you become less search engine friendly and...
  14. jnjc

    flashgallery.swf?? Or flashgallery.php??

    It's hard to say for sure, but my money is on the php file being the problem. Or maybe the location of your images... If I run the file by putting it in the address bar (http://autographfan.com/More_pages/Image_gallery/flashgallery.php) I'm guessing I should get an xml document with a list...
  15. jnjc

    Body attribute question

    Technically you shouldn't do either. You should use a .css file and put your styling in it. But if you are going to use one of the two use the 'style="color: white; background-color...' method. It'll give you more constancy and make the transition to a style sheet easier....
  16. jnjc

    iFrames in Dreamweaver CS3

    I did try it and it opens a new window when you click the link, can you post an example ?
  17. jnjc

    Forum Rule No. 1

    Continued from: http://www.webdesignforum.com/showpost.php?p=18492&postcount=7 I think it's a good idea to have this rule, otherwise the forum will just become full of adverts. If you contribute to the forum then sure a quick advertisement is probably just reward, but to register solely for...
  18. jnjc

    iFrames in Dreamweaver CS3

    I don't think you are right. As far as I know "target" only works with framesets not iframes....
  19. jnjc

    How to chmod files and dirctories via SSH

    chmod -R will set permissions recursively
  20. jnjc

    iFrames in Dreamweaver CS3

    <body> <a href="http://www.nofuss.com.au" onclick="document.getElementById('test1').src=this.href;return false">test</a> <iframe id="test1" src="" height=50% width=50%></iframe> </body> HTH, JC
Top