LEFT BORDER

blue links













TEST 1:  
(doesn't work properly without frames)
  Insert HTML Link






TEST 2:
(works with or without frames!)

L
Test Index   ·   CSB4 Rollover Links   ·   Link Styles 1   ·   Link Styles 2   ·   Link Styles 3   ·   iFrame Tutorial - IFrames described in detail!   ·   Form sample in iFrame   ·   Arrowhead   ·   Excel   ·   Color Blind   ·   Websafe Fonts and tests   ·   Make an Alert Box   ·   Webgem Placeholder Images   ·   LINK HOVER TOOLTIP   ·   OverLIB tooltip   ·   Disguise Email   ·   Quote of the Month   ·   Map to your location!   ·   Link Border Test

MIDDLE (TEXT AREA)

links in this area are in red
These links were typed, then assigned to page, or url assigned on both the border and the main text page.
(regular type link - will reload the same page.  Just used as samples.)

LINK BORDER TESTS:

PURPOSE:   
try to maintain blue links in the left border, red links in the main text page

The following links were inserted via Insert >HTML (webgem in Trellix) in both the left border and the main text page (trying to maintain blue links
in the left border, red links in the main text page)


TEST 1:   The link to a popup  window, no style settings included

WORKS: If publishing with frames, link color remains blue as defined in the Page Layout.
DOESN'T WORK: if publishing without frames, the link inserted in the left border reverts to the main text area link color (in this case red instead of the wanted blue color).
<A HREF="javascript:void(0)" ONCLICK="open('texts2.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=300,height=320')">insert HTML link</A>


TEST 2: link to a popup window and new regular size window, style settings included

WORKS: If publishing with frames, link color remains blue as defined in the Page Layout.
WORKS: If publishing without frames, link color remains blue also!
IMPORTANT: since two javascripts were loaded into the same page, the test 2 script in the white border area is defined as menu1, the second test 2 script is defined as menu2. (see script below)
<!-- Samantha Conway links for border with style setting included-->
<!-- Allow link to pop open a new resizable window on top of current window -->
<!-- sample red colors: #990000, #CC0300, #CC0000   blue colors:#0000FF, #8002BF, #3300CC -->


<style type="text/css">
.menulinks {position:relative;}
#menu1 a{color:#0000FF}
#menu1 a:alink{color:#8002BF}
#menu1 a:vlink{color:#3300CC}
</style>

<div id="menu1">
<!--  full address needed if in different directory or website, otherwise use just page name or id# -->
<!--  for popup window, all features off -->
  <A HREF="javascript:void(0)" ONCLICK="open('texts2.htm','miniwin','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=600,height=620')" >popup page</A><br>
<!--  for regular size new page -->
  <A HREF="http://www.samisite.com"  TARGET="_blank" TITLE="Samisite Home Page"  id="a6" class="menulinks" title="Home Page">new regular page</a>
</div>