Announcement

Collapse
No announcement yet.

Solution for Peter

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Solution for Peter

    Sorry Peter, but it seems my mail server will not relay any mail going to kingsbarn.freeserve.co.uk. Beats me why - I'll have to look into it.

    Anyway, I think I've figured out the problem with the homepage. It seems the left placement of the menu is a fixed number. That might be fine if you had everything justified left, like many pages do, but you have everything justified center, which means that won't work, because different screen resolutions will have the menu in totally different places in relation to the rest of the content. I assume you designed the page with 800x600 resolution in mind, so I wrote a bit of code that will place the menu where you see it in 800x600 for all resolutions. If that was a wrong assumption on my part, let me know, and I'll tweak it to get the effect you want.

    Anyway, somewhere in the code for the homepage is this line:

    menux=30 //The left placement of the menu
    You need to change it to look like this:

    //The left placement of the menu
    if ( screen.width < 800 )
    menux=30
    else
    menux=(((screen.width - 755) / 2) + 8)
    That should do it.

    #2
    Many thanks Chris - you're a genius! Strange about the email as no one else has reported having trouble sending.

    ------------------
    'Man know thyself'
    'Man know thyself'

    Comment


      #3
      I'm fairly sure it's my problem, since I'm being oddly blocked from sending e-mail to several domains, including several .edu ones that are in the same University system as the one the e-mail address I am currently using is from!

      Comment

      Working...
      X