FC Jamison 31 Posting Pro in Training Team Colleague

This type of file opens with C:\WINDOWS\regedit.exe

FC Jamison 31 Posting Pro in Training Team Colleague

Site Design.

Try googling website templates

FC Jamison 31 Posting Pro in Training Team Colleague

site design or straight graphics?

FC Jamison 31 Posting Pro in Training Team Colleague

I might regret this...but can you post a link to the neoware Web site so I can determine where your problem lies.

If it is http://www.neoware.com/, the problem is not with the site. I have no trouble right-clicking or viewing the source code of the site.

It would be helpful to know what version of IE you are using and where this computer is located (i.e. home, work, etc.).

If you are at work and the computer is on a network, you should see if co-worker's computers are similarly configured. If so, this setup is by design and you will need to speak to your network administrator.

FC Jamison 31 Posting Pro in Training Team Colleague

Instead of

<blockquote>
<p>
<span class="style1">Gasstocks  Limited</span> is a vibrant and dynamic international company operating out of Nigeria  with a robust and dedicated team who owing to the influence of our core values:  originality and excellence, and strengthened by a culture of pragmatism,  consistently provide high quality products and services which are innovative, pragmatic and  adapted to our client&rsquo;s requirements.<br />
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 
</p>

<p>
Our technical staff  have many years experience in specifying, supplying, supervising and  undertaking works to achieve cost effective and maximum long term benefits for  a our clients. This experience garnered in the industry has supported our growth and diversification in a competitive  and demanding market.&nbsp;&nbsp;&nbsp; 
</p>
</blockquote>

Use

<blockquote>
<span class="style1">Gasstocks  Limited</span> is a vibrant and dynamic international company operating out of Nigeria  with a robust and dedicated team who owing to the influence of our core values:  originality and excellence, and strengthened by a culture of pragmatism,  consistently provide high quality products and services which are innovative, pragmatic and  adapted to our client&rsquo;s requirements.
</blockquote>

<blockquote>
Our technical staff  have many years experience in specifying, supplying, supervising and  undertaking works to achieve cost effective and maximum long term benefits for  a our clients. This experience garnered in the industry has supported our growth and diversification in a competitive  and demanding market.&nbsp;&nbsp;&nbsp; 
</blockquote>

You can then use CSS to set the spacing between blockquotes

blockquote { margin-bottom: 10px }

of whatever spacing you wish, instead of using all of theose &nbsp;s

FC Jamison 31 Posting Pro in Training Team Colleague

Glad to help.

FC Jamison 31 Posting Pro in Training Team Colleague

ssuming the foregoing is correct, here is a script that will center the content of a Web pabe both horizontally and vertically between a header and footer, as long as the content is smaller than the window height.

If the content, including header and footer, exceeds the window height, the footer will float to the bottom of the content.

If the window width is smaller than content width, the content will remain at a fixed width.

/* 
   Title:   Center Content with Floating Footer Script
   Author:  Frank C. Jamison
   Revised: July 25, 2006
*/

window.onload   = initPage;
window.onresize = initPage;

function initPage() {
	
  // Get main page elements
  var header =  document.getElementById('header');
  var content = document.getElementById('content');
  var footer  = document.getElementById('footer');
	
  // Get element dimensions
  var headerHeight   = header.offsetHeight;
  var contentHeight  = content.offsetHeight;
  var contentWidth   = content.offsetWidth;
  var footerHeight   = footer.offsetHeight;
	
  // Calculate height of content
  var pageHeight     = (headerHeight + contentHeight + footerHeight);

  // Get browser window dimensions
  var windowHeight = getWindowHeight();
  var windowWidth  = getWindowWidth();

  // Set minimum page width
  minPageWidth = 759;
  minWidth = minPageWidth - contentWidth;
	
  // Adjust window height to account for horizontal scrollbar in non-IE browsers
  if (navigator.appName.indexOf("Microsoft") == -1) {
    if (windowWidth < minPageWidth) { windowHeight  -= 20; }
    windowWidth -= 20;
  }
	
  // Calculate white space for element positioning 
  var availHeight    = windowHeight - pageHeight;
  var availWidth     = windowWidth - contentWidth;
	
  // Adjust white space calculations for minimum dimensions
  if (availHeight <= 0) { availHeight = 0; }
  if (availWidth <= …
FC Jamison 31 Posting Pro in Training Team Colleague

I use Dreamweaver, but almost exclusively in code mode. It's really nice to have all of the attributes pop up for you and it saves a lot of typing time.

I've tried design mode, but I hate the way it makes my code look.

FC Jamison 31 Posting Pro in Training Team Colleague

Can we see the page so we can get an idea of what you are talking about?

FC Jamison 31 Posting Pro in Training Team Colleague

Use this code for each link you want to pop up in a new window:

<a href="javascript: window.open('test2.html',null, 'height=200,width=400,status=yes,toolbar=no,menubar=no,location=no'); self.close();">test</a>
FC Jamison 31 Posting Pro in Training Team Colleague

I guess I'm having a hard time picturing what you are trying to do?

How it the webcast accessed in the first place? By a link from another page? Through a frameset?

It seems like you should be able to contain it inside a div element and set the height and width using css.

Is this something I can look at on the Web to get an idea of what you are working with?

FC Jamison 31 Posting Pro in Training Team Colleague

Well, for IE, use

<script type="text/javascript">
window.open("test2.html",null, "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");
self.close();
</script>
FC Jamison 31 Posting Pro in Training Team Colleague

Well crap...that only works in IE.

The latest Netscape and FireFox browsers won't let javascript close a window it did not open.

FC Jamison 31 Posting Pro in Training Team Colleague

To my knowledge, there is no valid way to do this using only html and css.

Try using the following script, where paragraphID is the id tag name of the paragraph.
(i.e. <p id="paragraphID">

window.onload   = initPage;
window.onresize = initPage;

function initPage() {
	
  // Get paragraph height
  var paragraph =  document.getElementById('paragraphID');
  var paragraphHeight   = paragraph.offsetHeight;
  
  // Get browser window height
  var windowHeight = getWindowHeight();

  // Set paragraph area on page
  paragraph.style.position = 'absolute';
  paragraph.style.top = ((windowHeight - paragraphHeight) / 2) + 'px';
}

function getWindowHeight() {
  var windowHeight = 0;
	
  if (typeof(window.innerHeight) == 'number')
    windowHeight = window.innerHeight;
  else {
    if (document.documentElement && document.documentElement.clientHeight)
      windowHeight = document.documentElement.clientHeight;
    else {
      if (document.body && document.body.clientHeight)
        windowHeight = document.body.clientHeight; }; };
	
  return windowHeight;
};
FC Jamison 31 Posting Pro in Training Team Colleague

Go to the Run box on the Start Menu and type in:

sfc /scannow

This command will immediately initiate the Windows File Protection service to scan all protected files and verify their integrity, replacing any files with which it finds a problem.

You can also try reinstalling internet explorer.

FC Jamison 31 Posting Pro in Training Team Colleague

You could open the page in a new window of the specified size and close the old window behind you.

It's not the best solution, but it will work in a pinch.

FC Jamison 31 Posting Pro in Training Team Colleague

My initial instinct is to suggest renumbering your array subscripts in the second photo slider. (i.e. change photos[0] to photos[7], etc)

You could also try changing the variable names in the second script from photo and text to photo2 and text2.

I would have to see the entire code and html to make any suggestions beyond that.

FC Jamison 31 Posting Pro in Training Team Colleague

There are many things about that code that need to be fixed...but to answer your specific concern, remove the following from your text class:

display: table;
position: fixed;

Also, you cannot place paragraphs inside of a blockquote. Basically, a blockquote is just an indented paragraph...so use it in place of the p tag for indented text.

FC Jamison 31 Posting Pro in Training Team Colleague

The CSS style you want to eliminate the border around images in an anchor tag is:

a img { border: none }

FC Jamison 31 Posting Pro in Training Team Colleague

You could also try absolute positioning of the menu using CSS.

Theoretically, items positioned with CSS are stacked on top of items that are not positioned with CSS.

FC Jamison 31 Posting Pro in Training Team Colleague

This code is used specifically to redirect one Web page to another (i.e. if your Web site has moved, put this code at the old location)

<html>
  <head>
    <title>Redirect JavaScript-browsers</title>

    <script language="JavaScript">
      <!-- Beginning of JavaScript --------
        this.location = "http://www.newsite.com";
      // -- End of JavaScript code -------------- -->
    </script>

  </head>

  <body>
    This site is now located at <a href="http://www.newsite.com">http://www.newsite.com</a>.
  </body>
</html>

I hope that helps you out.

Mushy-pea commented: Very helpfull. +1