Users not seeing what was designed!

K

Karyn Dawes

Web site in questions: www.dogpatchdogsports.com

I came to work this morning and went to review (from a
different machine/environment) a web site that I re-
designed this past weekend. A couple of things are
happening:

1) I'm not seeing my 'buttons' that were created to get
you from page to page.

2) The header isn't centered.

3) Another user gets the 'buttons' but they are covered up
by the header (on some pages)

Is there something I should be doing to ensure that users
see what is being created? I am still fairly new to web
design ~ just me and my book!

Any help would be appreciated.

Regards,

Karyn
 
K

Kevin Spencer

In addition, the "overlapping" may be due to the use of absolute
positioning, which may behave differently in different browsers, screen
sizes, and resolutions.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

MD Websunlimited said:
Hi Karyn,

The Java Hover button requir the Java Virtual Machine which may not be
present on the users system. It is recommend that you use
 
K

Karyn Dawes

What should I do instead of absolute positioning?

Karyn
-----Original Message-----
In addition, the "overlapping" may be due to the use of absolute
positioning, which may behave differently in different browsers, screen
sizes, and resolutions.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

MD Websunlimited said:
Hi Karyn,

The Java Hover button requir the Java Virtual Machine
which may not be
present on the users system. It is recommend that you use
mouse over images instead.
can with Form
Calculator http://www.websunlimited.com/order/Product/FormCalc/formcal
c.htm
 
K

Karyn Dawes

Thanks! How do I create mouse over images? I used to tools
available in FP for the Hover buttons.

Karyn
-----Original Message-----
Hi Karyn,

The Java Hover button requir the Java Virtual Machine
which may not be present on the users system. It is
recommend that you use
mouse over images instead.


--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
Wish you could calculate form field totals? Well, you can with Form Calculator
http://www.websunlimited.com/order/Product/FormCalc/formca lc.htm
FrontPage Add-ins Since '97 2003 / 2002 / 2000 Compatible

"Karyn Dawes" <[email protected]> wrote in
message news:[email protected]...
 
C

Craig Schiller

Karyn -

You would use the DHMTL swap images function. Basically, you design two
graphics, one for the normal state and one for the mouseover state, then
apply this effect.

HTH,
Craig
 
P

peterken

You CAN use absolute positioning, by calculating the absolute position
(usually in layers).
To to this use document.write('...')

Example:

<!-- starting layer script , auto positioning -->
<script>
var hw = document.body.clientWidth;
var picsizh = document.images[0].width;
document.write('<div style="position: absolute; width: 925px; height:
100px; z-index: 1; left: ' + ((hw/2) - (picsizh/2)) + 'px; top: 546px"
id="layer1">');
</script>
<!-- back to normal -->

<!-- this section is a normal table, carefull, shows up in wrong place
in design mode due to script-->
<table width="806">
<tr>
<td id="CaptionBox3" class="Caption" align="center"
valign="middle" height="39">&nbsp;</td>
</tr>
<tr>
<td id="CaptionBox4" class="Caption" align="center"
valign="middle" height="37">&nbsp;</td>
</tr>
</table>
<!-- end of normal table-->

<!-- ending layer -->
<script>
document.write('</div>');
</script>


What should I do instead of absolute positioning?

Karyn
-----Original Message-----
In addition, the "overlapping" may be due to the use of absolute
positioning, which may behave differently in different browsers, screen
sizes, and resolutions.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

MD Websunlimited said:
Hi Karyn,

The Java Hover button requir the Java Virtual Machine
which may not be
present on the users system. It is recommend that you use
mouse over images instead.
can with Form
Calculator http://www.websunlimited.com/order/Product/FormCalc/formcal
c.htm
 
K

Kevin Spencer

You might want to use tables for layout. You can make them with 0-sized
borders, and the table itself doesn't show, but you can use it to place
other HTML elements inside it. While I consider using CSS to be
fundamentally a better approach, using tables is much easier for beginner
HTML developers. If you have FrontPage 2003, you can use Layout Tables,
which are basically HTML tables with 0-sized borders. However, the FP 2003
interface has some nice quick ways to create them.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

Karyn Dawes said:
What should I do instead of absolute positioning?

Karyn
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top