Web links, email links, button links

I have several different links through out my site. I want them to look differently but it keeps inheriting the styles of my button link. How can I make them appear different. For instance, I don't want my email link to have a background behind it when you hoover. I just want it to change colors. What am I doing wrong. Can anyone help?
HTML
<p>According to the American Society of Civil Engineers (ASCE) the nations bridges are getting a little better – last graded as a “C” (2009) in 2013 they are graded as a “C+”. The ASCE not only has the National Report Card on infrastructure available <a href="http://www.infrastructurereportcard.org/" title="ASCE National Report Card" target="new" class="weblink">(see the 2013 report Card here),</a> they have State and Local reports available as well.  <a href="http://www.asce.org/Infrastructure/Report-Card/State-and-Local-Report-Cards/" title="ASCE’s State and Local Report Cards." target="new" class="weblink">ASCE’s State and Local Report Cards.</a></p>
<p>Read the entire Case Study by clicking on the RESOURCES tab and selecting Pavemend Case Studies. Send us a photo and a brief report of your Pavemend repair and get a Pavemend Cap by “Mossy Oak.”  <strong><a href="mailto:[email protected]" class="emaillink">[email protected]</a></strong>
</p>
CSS
a.weblink:link, a.weblink:visited, a.weblink:active {
    /* This will handle all the states of the link other than when it is hovered over */
     /* put your style rules in this area */
    color: #0033CC; /* or any other color */
    text-decoration: underline;
a.weblink:hover {
     /* This makes the link Text Hover Color controlable */
     color:#999; /* or whatever color you want that is different from the color that you set for the other statuses */
a.emaillink:link, a.emaillink:visited, a.emaillink:active {
    /* This will handle all the states of the link other than when it is hovered over */
     /* put your style rules in this area */
    color: #0033CC; /* or any other color */
    text-decoration: underline;
    background-color: none;
a.emaillink:hover {
    /* This makes the link Text Hover Color controlable */
    color: #999; /* or whatever color you want that is different from the color that you set for the other statuses */
    background-color: none;
a:link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 100%;
    padding: 5px;
a:visited {
    color: #FFFFFF;
    text-decoration: underline;
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
    background-color: #03C;
    color: #FFF;
    height: 120%;
    alignment-baseline: text-after-edge;
    /* [disabled]font-size: smaller; */
    text-align: left;
    background-size: 0%;

Not sure what I'm doing wrong. Still not getting it right. Now my footer is wrong also:
CSS
@charset "UTF-8";
/* BEGIN HORIZONTAL DROP-MENU */
.clear-fix:before,
.clear-fix:after {
    content: " ";
    display: table;
.clear-fix:after {
    clear: both;
.clear-fix {
    *zoom: 1;
.sidebarleft img.MgTp {
    margin-top: 185px;
#menu {
    clear: none;
    position: static;
    width: 100%;
    padding-top: px;
    padding-right: px;
    padding-left: px;
    padding-bottom: px;
    background-image: url(_images/topnavpanel.png);
    color: #FFFFFF;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: px;
    background-repeat: no-repeat;
    float: none;
    text-align: center;
#menu ul {
    margin: 0;
    padding: 0;
    text-align: left;
#menu li {
    list-style: none;
    float: left;
    text-align: center;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    color: #000000;
/**top level menu**/
#menu li a {
    display: inline-block;
    text-decoration: none;
    /* adjust width as needed or use auto */
    width: 13em;
    padding: 8px;
    font-weight: bold;
    line-height: 12px;
    color: #000;
    border-top-style: none;
    font-size: 90%;
    margin-bottom: 0;
    margin-left: 2%;
    margin-right: 2%;
    margin-top: 0;
    border-bottom-style: none;
    text-align: center;
/**top menu style on mouse over**/
#menu li:hover > a {
    color: #FFF;
    width: 13em;
    text-align: center;
/**sub-menu**/
#menu li ul {
    display: none;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    margin-left: 40px;
    margin-right: 0;
    margin-top: 0;
    border-bottom-style: none;
/**sub-menu, help for older IE**/
#menu li:hover ul, #menu li.hover ul {
    display: block;
    position: absolute;
    z-index: 1000;
    padding: 0;
    text-align: left;
#menu li:hover li, #menu li.hover li {
    float: none;
    background-color: #E1D5BB;
    text-align: left;
/**drop-menu style**/
#menu li:hover li a, nav li.hover li a {
    width: 14em; /* adjust width as needed or use auto */
    margin-top: 0;
/**drop-menu style on mouse over**/
#menu li li a:hover {
    color: #FFF;
    background-color: #03C;
    position: relative;
    text-align: left;
/* Clear floated elements at the end*/
#menu:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
/**END HORIZONTAL DROP-MENUS STYLES**/
#pavemendlogo {
    background-image: url(_images/PAVEMEND_LOGO_WHITE.png);
    background-repeat: no-repeat;
    height: 78px;
    width: 196px;
    margin-left: 23px;
    margin-top: -130px;
/**END HORIZONTAL DROP-MENUS STYLES**/
#pavemendlogoresourcepage {
    background-image: url(_images/PAVEMEND_LOGO_WHITE.png);
    background-repeat: no-repeat;
    height: 78px;
    width: 196px;
    margin-left: 23px;
    margin-top: -160px;
/**END HORIZONTAL DROP-MENUS STYLES**/
#slqlogo {
    background-image: url(_images/PMND_SLQ_logo_White.png);
    background-repeat: no-repeat;
    height: 92px;
    width: 225px;
    margin-left: 23px;
    margin-top: -170px;
    margin-bottom: 35px;
#fifteenlogo {
    background-image: url(_images/PMND15Whitesingle.png);
    background-repeat: no-repeat;
    height: 98px;
    width: 225px;
    margin-left: 23px;
    margin-top: -170px;
    margin-bottom: 29px;
    z-index: 1000;
#trlogo {
    background-image: url(_images/PMND_TRlogoWhite.png);
    background-repeat: no-repeat;
    height: 115px;
    width: 225px;
    margin-left: 23px;
    margin-top: -185px;
    margin-bottom: 26px;
    z-index: 1000;
#vrlogo {
    background-image: url(_images/PMND_VRlogoWhite.png);
    background-repeat: no-repeat;
    height: 134px;
    width: 225px;
    margin-left: 23px;
    margin-top: -195px;
    margin-bottom: 18px;
    z-index: 1000;
#dotlinelogo {
    background-image: url(_images/Dotline_White-Red.png);
    background-repeat: no-repeat;
    height: 91px;
    width: 225px;
    margin-left: 23px;
    margin-top: -170px;
    margin-bottom: 35px;
#sllogo {
    background-image: url(_images/SLwhitelogo.png);
    background-repeat: no-repeat;
    height: 92px;
    width: 225px;
    margin-left: 23px;
    margin-top: -170px;
    margin-bottom: 35px;
#ialogo {
    background-image: url(_images/InstantAsphalttopLogo.png);
    background-repeat: no-repeat;
    height: 102px;
    width: 225px;
    margin-left: 23px;
    margin-top: -170px;
    margin-bottom: 25px;
#kemroklogo {
    background-image: url(_images/KEMROK_LOGOWhiteType.png);
    background-repeat: no-repeat;
    height: 52px;
    width: 225px;
    margin-left: 23px;
    margin-top: -150px;
    margin-bottom: 53px;
#kemrokvrlogo {
    background-image: url(_images/KEMROK_LOGO_VR.png);
    background-repeat: no-repeat;
    height: 46px;
    width: 230px;
    margin-left: 23px;
    margin-top: -150px;
    margin-bottom: 59px;
#fireroklogo {
    background-image: url(_images/Firerok_logo_White.png);
    background-repeat: no-repeat;
    height: 81px;
    width: 225px;
    margin-left: 23px;
    margin-top: -155px;
    margin-bottom: 30px;
#awlogo {
    background-image: url(_images/PMNDAWlogowhite1.png);
    background-repeat: no-repeat;
    height: 70px;
    width: 225px;
    margin-left: 23px;
    margin-top: -155px;
    margin-bottom: 40px;
#aslogo {
    background-image: url(_images/PMNDASlogowhite1.png);
    background-repeat: no-repeat;
    height: 64px;
    width: 225px;
    margin-left: 23px;
    margin-top: -155px;
    margin-bottom: 47px;
#prochoicetype {
    background-image: url(_images/pro_choice_concrete_type.png);
    background-repeat: no-repeat;
    height: 27px;
    width: 550px;
    margin-left: 220px;
    margin-top: -40px;
    bottom: px;
    margin-bottom: 66px;
#resourcestype {
    background-image: url(_images/ResourcesType.png);
    background-repeat: no-repeat;
    height: 25px;
    width: 148px;
    margin-left: 220px;
    margin-top: -60px;
    bottom: px;
    margin-bottom: 73px;
#Contacttype {
    background-image: url(_images/PurchaseType.png);
    background-repeat: no-repeat;
    height: 25px;
    width: 151px;
    margin-left: 220px;
    margin-top: -60px;
    bottom: px;
    margin-bottom: 73px;
#Contesttype {
    background-image: url(_images/ContestType.png);
    background-repeat: no-repeat;
    height: 54px;
    width: 478px;
    margin-left: 220px;
    margin-top: -75px;
    bottom: px;
    margin-bottom: 59px;
#sustainabilitytype {
    background-image: url(_images/SustainabilityType.png);
    background-repeat: no-repeat;
    height: 25px;
    width: 179px;
    margin-left: 220px;
    margin-top: -60px;
    bottom: px;
    margin-bottom: 73px;
#techsupporttype {
    background-image: url(_images/TechSupportType.png);
    background-repeat: no-repeat;
    height: 25px;
    width: 761px;
    margin-left: 220px;
    margin-top: -60px;
    bottom: px;
    margin-bottom: 73px;
body {
    background-color: #666;
    color: #000;
    text-align: center;
    background-image: url(_images/roadblurred.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding-top: 60px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 100%;
    line-height: 1.4;
.formtext {
    font-size: 100%;
    text-align: left;
.bodyfootnote {
    font-size: 70%;
    margin-left: 20px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
.red {
    font-size: 70%;
    color: #F00;
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    text-decoration: none;
    list-style: none;
    text-align: left;
h1, h2, h3, h4, h5, h6, p {
    /* [disabled]margin-top: 0; */     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
    padding-right: 15px;
    padding-left: 23px;
    line-height: 25px;
h4 {
    padding-left: 0px;
    color: #F40633;
    line-height: 0px;
    font-size: 100%;
h5 {
    padding-left: 23px;
    color: #F40633;
    line-height: 0px;
    font-size: 120%;
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
    border: none;
    margin-left: 0px;
    position: ;
    top: 155px;
    -webkit-box-shadow: 0px 0px 0px 0px;
    box-shadow: 0px 0px 0px 0px;
    left: 9px;
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 100%;
    padding: 5px;
a:visited {
    color: #FFFFFF;
    text-decoration: underline;
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
    text-decoration: none;
    background-color: #03C;
    color: #FFF;
    height: 120%;
    alignment-baseline: text-after-edge;
    /* [disabled]font-size: smaller; */
    text-align: left;
    background-size: 0%;
a.weblink:link, a.weblink:visited, a.weblink:active {
    /* This will handle all the states of the link other than when it is hovered over */
     /* put your style rules in this area */
        background-color: none;
        color: #0033CC; /* or any other color */
    text-decoration: underline;
a.weblink:hover {
     /* This makes the link Text Hover Color controlable */
        background-color: none;
     color:#999; /* or whatever color you want that is different from the color that you set for the other statuses */
a.emaillink:link, a.emaillink:visited, a.emaillink:active {
    /* This will handle all the states of the link other than when it is hovered over */
     /* put your style rules in this area */
    background-color: none;
    color: #0033CC; /* or any other color */
    text-decoration: underline;
a.emaillink:hover {
    /* This makes the link Text Hover Color controlable */
    background-color: none;
    color: #999; /* or whatever color you want that is different from the color that you set for the other statuses */
/* ~~this fixed width container surrounds the other divs~~ */
.container {
    width: 960px;
    background-color: #FFF; /* the auto value on the sides, coupled with the width, centers the layout */
    background-image: url(_images/Bridge4WebScreened.png);
    background-repeat: no-repeat;
    margin-bottom: 0;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0;
    text-align: left;
    position: static;
.containerTS {
    width: 960px;
    background-color: #FFF;
    margin: 0 0px; /* the auto value on the sides, coupled with the width, centers the layout */
    background-image: url(_images/US_Map.png);
    background-repeat: no-repeat;
    text-align: left;
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
    background-color: #000;
    background-image: url(_images/BannerBlured960.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
    background-size: contain;
.headerSL {
    background-color: #000;
    background-image: url(_images/PMND_SL_Header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerPurchase {
    background-color: #000;
    background-image: url(_images/contact_us_pavemend_header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerSLQ {
    background-color: #000;
    background-image: url(_images/PMND_SLQ_Header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerDOTline {
    background-color: #000;
    background-image: url(_images/DOTLINEHeader.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.header15 {
    background-color: #000;
    background-image: url(_images/PMND15Header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerTR {
    background-color: #000;
    background-image: url(_images/PMND_TRHeader.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerAW {
    background-color: #000;
    background-image: url(_images/anti_wear_pavemend_header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerAS {
    background-color: #000;
    background-image: url(_images/anti_scale_pavemend_header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerVR {
    background-color: #000;
    background-image: url(_images/PMND_VRHeader.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerIA {
    background-color: #000;
    background-image: url(_images/Instant_asphalt_packaged_Header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerKemrok {
    background-color: #000;
    background-image: url(_images/KEMROKpackagedHeader.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerKemrokVR {
    background-color: #000;
    background-image: url(_images/KEMROK_VRpackagedHeader.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerFirerok {
    background-color: #000;
    background-image: url(_images/FIREROKpackagedHeader.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerAntiWear {
    background-color: #000;
    background-image: url(_images/anti_wear_pavemend_header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerTechSupport {
    background-color: #000;
    background-image: url(_images/FEBlurred.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerResources {
    background-color: #000;
    background-image: url(_images/ResourceBanner.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerContact {
    background-color: #000;
    background-image: url(_images/contact_us_pavemend_header.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.headerSustainability {
    background-color: #000;
    background-image: url(_images/Sustainability_topheader.png);
    height: 229px;
    background-repeat: no-repeat;
    width: 960px;
.header h1 {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20pt;
    font-style: normal;
    font-weight: bolder;
    color: #FFF;
    padding-top: 150px;
    padding-left: 30px;
/* ~~ These are the columns for the layout. ~~
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
.sidebar1 {
    float: right;
    width: 180px;
    margin-left: 0px;
    margin-right: 30px;
    clear: none;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 100%;
    font-style: italic;
    background-image: url(_images/Testimonialb.gif);
    background-repeat: no-repeat;
    height: 456px;
    text-decoration: none;
    z-index: 1000;
.sidebarPurchase {
    float: right;
    width: 210px;
    margin-left: 0px;
    margin-right: 0px;
    clear: none;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 100%;
    font-style: italic;
    background-image: url(_images/purchaseSB.png);
    background-repeat: no-repeat;
    height: 460px;
    margin-top: 0px;
    text-decoration: none;
    background-color: #217CC0;
    background-position: 10px 10px;
.sidebarPurchasePhoto {
    width: 190px;
    margin-left: 10px;
    margin-right: 20px;
    clear: none;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 100%;
    font-style: italic;
    background-image: url(_images/purchaseSB.png);
    background-repeat: no-repeat;
    height: 127px;
    margin-top: 320px;
    text-decoration: none;
    /* [disabled]background-color: #217CC0; */
    background-position: 10px 10px;
    text-align: center;
.ipadsidebar {
    float: right;
    width: 200px;
    margin-left: 0px;
    margin-right: -20px;
    clear: none;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 100%;
    font-style: italic;
    background-image: url(_images/iPadSidebar.png);
    background-repeat: no-repeat;
    height: 460px;
    margin-top: 0px;
    text-decoration: none;
    background-position: 0px 0px;
    text-align: right;
.sidebarleft {
    float: left;
    width: 200px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
    font-style: oblique;
    height: 180px;
    text-decoration: none;
    padding-top: 8px;
    padding-left: 10px;
    margin-right: 5px;
    margin-bottom: px;
    background-color: #217CC0;
    vertical-align: bottom;
    line-height: 120%;
    font-weight: bold;
    border-bottom-style: groove;
    border-bottom-width: 10px;
    margin-top: 0px;
    text-align: left;
.sidebarleftnonav {
    float: left;
    width: 200px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 85%;
    font-style: oblique;
    height: 180px;
    text-decoration: none;
    padding-top: 8px;
    padding-left: 10px;
    margin-right: 5px;
    margin-bottom: px;
    /* [disabled]background-color: #217CC0; */
    vertical-align: bottom;
    line-height: 120%;
    font-weight: bold;
    border-bottom-style: none;
    border-bottom-width: 10px;
    margin-top: 0px;
    text-align: left;
.sidebarleftresources {
    float: left;
    width: 200px;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 83%;
    font-style: oblique;
    height: 490px;
    text-decoration: none;
    padding-top: 8px;
    padding-left: px;
    margin-right: 5px;
    margin-bottom: px;
    background-color: #217CC0;
    vertical-align: bottom;
    line-height: 120%;
    font-weight: bold;
    border-bottom-style: groove;
    border-bottom-width: 10px;
    margin-top: 0px;
    text-align: left;
.sidebargreen {
    float: left;
    width: 195px;
    height: 410px;
    text-decoration: none;
    padding-top: 20px;
    margin-right: 5px;
    background-color: #8CC63F;
    border-bottom-style: groove;
    border-bottom-width: 10px;
    margin-top: -4px;
    padding-left: 10px;
.nav2 {
    font-family: bebas-neue;
    font-style: normal;
    font-weight: 400;
    color: #FFF;
    text-align: left;
.content {
    width: 730px;
    float: left;
    background-image: none;
    background-repeat: no-repeat;
    background-position: left;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    padding: 10px 0;
    text-align: left;
    font-size: 100%;
    margin-left: px;
.contactform {
    width: 680px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: left;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    padding: 10px 0;
    text-align: left;
    font-size: 90%;
    margin-left: 23px;
    z-index: 1000;
.contestcontactform {
    width: 680px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: left;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    padding-top: 0px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 10px;
    text-align: left;
    font-size: 90%;
    margin-left: 23px;
    z-index: 1000;
    margin-top: 100px;
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
    padding: 0 15px 15px 40px;
    text-decoration: none;
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
    list-style: none; /* this removes the list marker */
    border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
    margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    text-decoration: none;
ul.nav li {
    border-bottom: 1px solid #666;
    text-align: left;
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
    padding: 5px 5px 5px 15px;
    display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
    text-decoration: none;
    background-color: #C6D580;
    text-align: left;
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
    background-color: #DFEBF3;
    color: #FFF;
    text-decoration: none;
    text-align: left;
/* ~~ The footer ~~ */
.footer {
    padding: 10px 0;
    position: relative;/* this gives IE6 hasLayout to properly clear */
    clear: both;
    background-color: #000000;
    height: 150px;
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-left: 760px;
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-right: 8px;
    margin-left: 23px;
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
.productlogos {
    margin-left: 23px;
    margin-top: 20px;
    float: none;
.Bold {
    font-weight: bold;
.left {
    text-align: left;
.inherent {
    font-style: inherit;
sup {
    position: relative;
    top: -1ex;
    vertical-align:baseline;
    font-size: 75%;
.footer p {
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 80%;
    color: #FFF;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 30px;
#wrapper {
     width:970px; /**adjust as needed**/
     margin:0 auto; /**centers page on screen**/              
.fltrtpostcard {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: left;
    margin-left: 720px;
    top: 0px;
    margin-top: -200px;
    margin-bottom: 20px;
    margin-right: 0px;
    height: auto;
.flt_rgt {
    float: right;
    margin-top: 15px;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
.flt_pftrgt {
    float: right;
    margin-top: -50px;
    margin-right: 0px;
    background-image: ;
    background-repeat: no-repeat;
.flt_rgtbtmlogo {
    float: right;
    margin-top: 20px;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
.flt_rgt2 {
    float: right;
    margin-top: px;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    top: -50px;
    right: -20px;
    padding-top: 0px;
    padding-right: 50px;
.title {
    /* [disabled]margin-right: 30px; */
    margin-top: 0px;
    margin-left: 23px;
    background-image: ;
    background-repeat: no-repeat;
    /* [disabled]margin-left: 20px; */
    top: 30px;
    /* [disabled]margin-top: 30px; */
    left: 30px;
.flt_products {
    float: right;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 500px;
    margin-top: -70px;
.flt_productsb {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 500px;
    margin-top: -80px;
    visibility: inherit;
.flt_productslq {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 350px;
    margin-top: -125px;
.flt_producttr {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 375px;
    margin-top: -125px;
.flt_productvr {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 475px;
    margin-top: -105px;
.flt_productia {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 420px;
    margin-top: -125px;
.flt_productkemrok {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 485px;
    margin-top: -180px;
.flt_productkemrokvr {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 590px;
    margin-top: -170px;
.flt_productfirerok {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 485px;
    margin-top: -170px;
.flt_productaw {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 430px;
    margin-top: -170px;
.flt_product15 {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 280px;
    margin-top: -125px;
.flt_productdotline {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 280px;
    margin-top: -155px;
.flt_productsl {
    float: left;
    margin-right: 30px;
    background-image: ;
    background-repeat: no-repeat;
    margin-left: 370px;
    margin-top: -170px;
.container section nav {
    background-image: url(_images/topnavpanel.png);
    background-repeat: no-repeat;
    height: 30px;
    width: 960px;
    padding-top: 3px;
nav ul {
    list-style: none; /* this creates the space between the navigation on the content below */
    font-size: 90%;
    border-top-width: 0px;
    border-top-style: solid;
    /* [disabled]border-top-color: #666; */
    position: absolute;
    line-height: 120%;
    text-align: left;
nav ul li {
    text-decoration: none;
    color: #FFF;
nav ul a:link , nav ul a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
    padding: 5px 5px 5px 15px;
    display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
    width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
    text-decoration: none;
    text-align: left;
    color: #FFF;
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
    color: #FFF;
    text-decoration: none;
nav ul a:hover, nav ul a:active, nav ul a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
    color: #FFF;
    text-decoration: none;
    height: 120%;
    width: auto;
    margin-left:;
.orange {
    color: #FAA634;
.white {
    color: #FFFFFF;
.red {
    color: #F00;
.red1 {
    color: #F00;
.toppanel {
    background-image: url(_images/topnavpanel.png);
    background-repeat: no-repeat;
    height: 30px;
    width: 960px;
.white {
.CeraTechLogo {
    background-image: url(_images/CTI_logo_white.png);
    background-repeat: no-repeat;
    width: 200px;
    height: 60px;
#resources {
    background-image: url(_images/ResourcesType.png);
    background-repeat: no-repeat;
    height: 25px;
    width: 521px;
    margin-left: 200px;
    margin-top: -40px;
.pavemendlogo {
    margin-left: 23px;
    margin-top: -130px;
    /* [disabled]margin-top: -40px; */
.footer_img {
    margin-top: -20px;
    margin-left: -10px;
.footer_img2 {
    margin-top: -40px;
    text-align: right;
    float: left;
    margin-right: 35px;
    margin-left: 200px;
footer aside {
    width: 25%;
    float: left;
    text-align: left;
    min-height: 50px;
    margin-left: 23px;
    line-height: 120%;
    font-size: 80%;
    margin-top: 20px;
.aside2 {
    float: none;
    margin-left: 100px;
    width: 29%;
    margin-top: 35px;
.aside3 {
    float: none;
    margin-left: 400px;
    width: 29%;
    line-height: 120%;
    margin-top: -43px;
.sidebarleft img {
    margin-left: -10px;
.sidebarleft icon {
    margin-top: 0px;
    margin-left: -10px;
.sidebarleft nav ul li a img {
    margin-top: 0px;
.content section p a {
    color: #000000;
    font-size: 100%;
/**sub-menu, help for older IE**/
.content section p a:hover ul {
    display: block;
    position: ;
    z-index:1000;
    padding: 0;
.content section p a:hover li, .content section p a li.hover li {
    float: none;
    background-color: #E1D5BB;
/**drop-menu style**/
.content section p a:hover li a, nav li.hover li a {
    width: 14em; /* adjust width as needed or use auto */
    margin-top: 0;
/**drop-menu style on mouse over**/
.content section p a:hover {
    position: relative;
    background-color: none;
    background-image: ;
    background-image: ;
    height: 120%;
    width: 120%;
    overflow-y: hidden;
    overflow-x: hidden;
    visibility: visible;
    font-weight: bold;
    color: rgba(255,255,255,1.00);
/* Clear floated elements at the end*/
.content section p a:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
#firstname {
    width: 330px;
    margin-top: 0px;
#lastname {
     width:330px;
#streetaddress {
     width:684px;
#city {
     width:330px;
#zip {
     width:260px;
#company {
     width:684px;
#phone {
     width:330px;
#email {
     width:330px;
#outsidetheus {
     width:330px;
HTML
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<!-- TemplateBeginEditable name="doctitle" -->
<title>Permanent Concrete and Asphalt Repair Home Page</title>
<meta name="description" content="CeraTech's Pavemend family of high performance concrete repair products have become the choice of professionals across the country for their rapid return to service, versatility, ease of use, and superior durability.">
<!-- TemplateEndEditable -->
<link href="../pavmend_styles.css" rel="stylesheet" type="text/css">
<style type="text/css">
a:link {color:blue}
a:visited {color:black}
a:hover,
a:active,
a:focus {background:blue; color:white}
.weblink a:link {color:blue}
.weblink a:visited {color:yellow}
.weblink a:hover,
.weblink a:active,
.weblink a:focus {background:none; color:red}
.email a:link {color:green}
.email a:visited {color:silver}
.email a:hover,
.email a:active,
.email a:focus {background:none; color:navy}
</style>
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>
<body>
<div id="wrapper">
<div class="container">
  <!-- TemplateBeginEditable name="Header" -->
  <div class="header"></div>
<div id="pavemendlogo"></div>
      <div id="prochoicetype"></div>
  <!-- TemplateEndEditable --><!-- TemplateBeginEditable name="TopPanel" -->
  <nav>
    <ul id="menu">
      <li><a href="../pavemend_home_page.html">OUR PRODUCTS &#9660;</a>
        <ul>
          <li><a href="../slq_product_page.html">SLQ<sup>®</sup> - Very Rapid Repair Mortar</a></li>
          <li><a href="../sl_product_page.html">SL<sup>®</sup> - Semi-Leveling Rapid Repair Concrete</a></li>
          <li><a href="../dotline_product_page.html">DOTLine™ - Pre-Extended Rapid Repair Concrete</a></li>
          <li><a href="../15.0_product_page.html">Pavemend 15.0<sup>®</sup> - Self Leveling Rapid Repair Mortar</a></li>
          <li><a href="../TR_product_page.html">Pavemend TR<sup>®</sup> - Semi-Leveling Rapid Repair Mortar</a></li>
          <li><a href="../VR_product_page.html">Pavemend VR<sup>®</sup> - Vertical & Overhead Rapid Repair Mortar</a></li>
          <li><a href="../IA_product_page.html">Instant Asphalt™ - Permanent Asphalt Repair Material</a></li>
          <li><a href="../kemrok_product_page.html">KEMROK™ - Chemical Resistant Repair Concrete</a></li>
          <li><a href="../kemrokVR_product_page.html">KEMROK VR™ - Vertical & Overhead Chemical Resistant Repair Mortar</a></li>
          <li><a href="../firerok_product_page.html">FIREROK™ - High Temperature Repair Concrete</a></li>
          <li><a href="../antiwear_product_page.html">Anti-Wear™ - Reactive, Concrete Surface Hardener</a></li>
          <li><a href="../antiscale_product_page.html">Anti-Scale™ - Reactive, Concrete Surface Hardener</a></li>
        </ul>
      </li>
      <li><a href="../resources_page.html">RESOURCES</a></li>
      <li><a href="../technical_support.html">TECHNICAL SUPPORT</a></li>
      <li><a href="../contact_page.html">CONTACT US</a></li>
    </ul>
  </nav>
  <!-- TemplateEndEditable -->
  </section>
  <!-- TemplateBeginEditable name="Sidebar" -->
  <div class="sidebar1">
    <!-- end .sidebar1 -->
  </div>
  <!-- TemplateEndEditable -->
  <!-- TemplateBeginEditable name="Content" -->
  <div class="content">
    <p>
    <section>
        <p> </p>
<img src="../_images/homeheader.png"  alt="" width="650" height="31" class="fltlft"/>
    </section>
    </p>
    <p> </p>
</section>
    <p> </p>
      <section><p><strong>Pavemend</strong><sup>®</sup> concrete and asphalt repair products are quickly becoming the preferred repair materials for Turnpike, State DOT bridge crews and discriminating engineers who recognize the value of durable, permanent concrete and asphalt repairs. Contractors and maintenance personnel save time, reduce repair costs, and minimize exposure to traffic and traffic disruptions.</p>
        <h3>Concrete & Asphalt repair applications include:</h3>
        <table width="700" align="left" >
          <tr>
            <td valign="top" nowrap style="padding-left: 15px;">Full & Partial Depth Bridge Deck Repairs </td>
            <td valign="top" nowrap style="padding-left: 15px;">Dowel Bar Retrofits</td>
            <td valign="top" nowrap style="padding-left: 15px;">Industrial Concrete Repair</td>
          </tr>
          <tr>
            <td valign="top" nowrap style="padding-left: 15px;">Bridge Header Joints</td>
            <td valign="top" nowrap style="padding-left: 15px;">Cold Weather Repairs</td>
            <td valign="top" nowrap style="padding-left: 15px;">Concrete Exposed to High Heat </td>
          </tr>
          <tr>
            <td valign="top" nowrap style="padding-left: 15px;">Bridge Approach Slabs</td>
            <td valign="top" nowrap style="padding-left: 15px;">Runway Repairs</td>
            <td valign="top" nowrap style="padding-left: 15px;">Concrete Exposed to Chemicals</td>
          </tr>
          <tr>
            <td valign="top" nowrap style="padding-left: 15px;">Form & Pour Repairs</td>
            <td valign="top" nowrap style="padding-left: 15px;">Utility Trenches</td>
            <td valign="top" nowrap style="padding-left: 15px;">Concrete Exposed to Wastewater</td>
          </tr>
          <tr>
            <td valign="top" nowrap style="padding-left: 15px;">Joint Nosings</td>
            <td valign="top" nowrap style="padding-left: 15px;">Post Grooving Treatments</td>
            <td valign="top" nowrap style="padding-left: 15px; padding-bottom: 30px;">Manhole Rehabilitation</td>
          </tr>
        </table>
<h3>Sustainable Concrete and Asphalt Repair Technology</h3>
<p>Featuring technology developed in the USA, Pavemend products require only the addition of water, no bonding agents or curing compounds. Pavemend concrete and asphalt products are easier to use, offer greater durability provide, superior return on investment, and are by the far the most sustainable repair products available today.</p>
      </section>
            <p> </p>
<!-- end .content --></div>
  <!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="Footer Logo" -->
<footer>
         <img src="../_images/productfamily.png"  alt="" width="250" height="80" class="flt_products"/>
<div class="footer"><img src="../_images/Done_Smart_White_Logo.png" alt="done_smart_white" width="150" height="17" class="flt_rgt" />
<aside><strong><em style="color: #FFF; font-size: 90%;">Manufactured by</em></strong><br><br>
<img src="../_images/CTI_logo_white.png"  alt="" width="200" height="47" class="footer_img"/></aside>
<aside class="aside2"><a href="#../twitter.com/Pavemend"><strong><em>Twitter</em></strong> <img src="../_images/twitter-bird-dark-bgs.png" width="20" height="17"  alt=""/></a></aside>
<aside class="aside3"><strong><em style="color: #FFF"><a href="../sustainability_page.html">Planet Friendly Technology</a></em></strong><br>
  <a href="../sustainability_page.html"><img src="../_images/PFTLogo.png"  alt="Planet Friendly Technology" width="75" height="73" class="footer_img2" title="Planet Friendly Technology"/></a></aside>
</footer>
    <!-- end .footer --></div>
<!-- end .container --></div>
<!-- TemplateEndEditable -->
</body>
</html>
I feel like I'm making a mess of it.

Similar Messages

  • TS3899 Unable to access web link within a received emails, how to correct?

    Recently I am not able total on web links embedded within emails I receive. Can anyone help?

    Have you tried restarting or resetting your iPad?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10 seconds).

  • Web links - via buttons?

    Hello. I'm a DVD studio pro newbie and I have a bizzare quesiton. I'm trying to make a menu that has web links that the viewer can click on and then be directed to a website. How can I do this? So far, I can only figure out how to have a slideshow picture with a web link open or a new menu with a web link. But the boss doesn't want to go forward, he wants the link to open from pushing the button on the menu. Can anyone help me? I'm happy to trade any knowledge on FCP, After Effects, Photoshop, and others. Thanks!
    [email protected]

    Hi and welcome to the forum,
    If you are on DVDSP 4 it's laid out fairly concisely on page 594.
    Alex also has a project file and explaination over at the editorsbin.com
    good luck

  • Create a Button that Opens a Specific Web Link from a Dropdown Box

    Hi guys.  My main question is, how do I make a Button that opens a specific Web Link, depending on the URL selected in a Dropdown box?
    Example:
    I'm a comlpete newbie and need a code sample of how this would work!  Thanks!
    I have a couple other questions which are related to this. 
    1) Is it possible to hide the URL in the Dropdown list, and only show the Name, so for examlpe, it would only list Hotmail, Gmail, Yahoo, and not the www....com?
    2) Another more advanced question is, once the web link is opened, is it possible to have adobe input or fill-in the Login and Password fields into the website and then hit "Enter" for you.  The Username and Password would be stored somewhere in adobe and would depend on the weblink opened. So for example: When you open Hotmail, it would use the following; Username:[email protected] and Password:password1, but if you opened Gmail, it would use a different Username and Password stored for Gmail.
    3) Finally, out of curiousity, is it possible to have adobe extract data from a website, and fill them into an adobe form?  This maybe over my head, but any starting point or examples would be of great help!

    Use something like this as the button's MouseUp action:
    app.launchURL(this.getField("URL Dropdown").value));
    To answer your other questions:
    1) Yes. Place the URL as the export value of each option, and the name of the site as the display value. The code I provided can remain the same.
    2) No.
    3) Might be possible, but it's very tricky. The way to do it would be to convert the website to a PDF, process that PDF to extract the data from it, and then use that to populate the form fields. That would require quite advanced scripting knowledge, but it could be possible.

  • How do I get "mailto:" links to work with my web based email?

    I use the web based email from godaddy.com called workspace. I can't get the mailto: links to work with firefox. I did find a code that makes the correct compose window to open up but it doesn't input the email address.
    Also, a related problem with my email is that you can't copy an email address and then paste the email address into the email. Pasting is not allowed with firefox but works ok with Internet Explorer

    Welcome to the Apple Community.
    Try adjusting the dolby digital setting.

  • Embed a web link into an image for email

    Embed a web link into an image for email.  Anyone knows how to do this?

    Fantastic!!
    Where did you get that?!   I'll try it with the "poster frame" of a movie.  I am so grateful.  It opens a whole new world.

  • Suddenly on my iPad I cannot access web links  via emails but can on my iphone

    Suddenly I Cannot access web links via emails on my iPad but can on my iPhone. Is there something in my settings I need to change?

    Restart
    https://www.apple.com/support/iphone/assistant/phone/#section_1

  • Adding email links and web links????

    I am looking to make a wdding invitation on DVD using Final Cut or IDVD or I Movie? can anyone tell me how to add an email link or a way to add embedded web links that if someone inserts this dvd into their computer they can click and it will open their default email software and automatically RSVP via email, or perhaps get directions to the church, hall etc on Mapquest? can someone help or can anyone come up with an alternative idea?
    thanks Jeff

    Feff:
    Wellcome to the forums !
    Search (it's working again!) for DVD@ccess feature in DVDSP forum and in DVDSP USer Manual.
    http://discussions.apple.com/search.jspa?objID=f952&search=Go&q=dvd%40ccess
    As you'll find in the forum, it's quite limitated.
    Hope that helps !
      Alberto

  • Web Link Buttons with Variable URLs

    Hey all:
    I asked my question earlier in the general InDesign section of the forum, but a helpful user suggested I repost it here as it will take some scripting magic to accomplish:
    My work assignment of late has been developing an interactive PDF catalog of our products that my superior can distribute digitally and let potential customers browse without accessing the website.
    We have an Excel file that lists all the details of our products - name, description, title, image, category, etc. I have used Data Merge to create this 300 page document rather than hand-copy each product's information to a single page.
    Unfortunately I am now stuck - I have designed the catalog in such a way that I have an image that I want to make a button which, if the person wishes to purchase a product, will take them directly the the product page online where he or she can add it to the shopping cart. This is great, but I cannot seem to find a way to make the image button's link a variable as the rest of the page content. Links to each product page are included in the CSV file, but without a variable web link method, I would have to create the unique links individually, which kinda defeats the purpose of using Data Merge anyway.
    So my question is this - is there any way to make a URL button (an image) have a web link function that can read from a CSV file and change each page like other imported content? If not, is there another way to automate the individual link process without setting it up on each generated page?
    Thanks in advance,
    Asher

    Huh, that error seems really mysterious. (I had assumed your initial problem was from targetting the ESTK instead of targetting ID, and when you said "hangs at the for loop" you meant the actual "for(..." line.) I'd be curious...if you run the broken version and after it hangs, try typing in the JavaScript console:
       p
       p.buttons
       p.buttons[0]
       p.item(0)
       p.buttons[0].id
       p.item(0).id
    which ones work and which fail?
    In CS5, script labels got a bit more annoying to use. I think you might be better off using text box names instead.
    Name the text box in the Layers panel by click-pause-click-ing it (wow, what an unfamiliar UI!) and assigning a name to it.
    Suppose you name it "url".
    Then instead of "p.textFrames[0]" (or p.textFrames.item(0)), you can use "p.textFrames.itemByName('url')".
    Hopefully this doesn't get messed up across the data merge.
    To use the script label, you need this horrid construction:
    var j;
    for (j=0; j<p.textFrames.length; j++) {
        if (p.textFrames[j].label === 'url') {
            t = p.textFrames[j];
            break;
    though if your InDesign is screwed up, you might need to change [j] -> item(j) again. Maybe you should Replace Your Preferences (http://forums.adobe.com/thread/526990).

  • Eliminate web link on email

    Hi,
    Is someone tell me how can I eliminate all web links when I read email on my BlackBerry ? 
    I just want read pure text.  Many thanks
    Solved!
    Go to Solution.

    Here ya go!
     View email messages in plain text format
    1. In a message list, press the Menu key.
    2. Click Options.
    3. Click Email Settings.
    4. If necessary, change the Message Services field.
    5. Change the Enable HTML Email field to No.
    6. Press the Menu key.
    7. Click Save.

  • PDF export with link to document defaulting to "Open a web link" instead of "Open a file"

    I have a MS Access database and I'm trying to export reports to PDF (I have Acrobat XI Pro) that include a hyperlink to another document on the same drive on my computer.  I have tested this with hyperlinked email addresses, and emails export fine to PDF and are still functional, opening a new email in Outlook.  The hyperlinks to documents work fine in MS Access, opening a Word, PDF, or other document when clicked.
    When I export to PDF, the links to documents say, "This document is trying to connect to: file:" and my filepath.  If I say "Allow," the link tries to open in my default web browser, which comes up blank.  I've tested this on other computers in our office too.  When I right-click the link, I have the option to "Open weblink as a new document" -- this opens the document successfully, but won't be very helpful or fast for our staff.  When I examine the link with Tools - Add or Edit Link, I see that the link's action defaulted to "Open a web link" when the PDF was created.  This seems like it should be "Open a file."  To see if "Open a file" would work in theory, I tried creating a test button in a blank PDF and made the "mouse up" action "Open a file" and linked to various documents on my computer.  Each time, the button does not react to being clicked at all, like nothing happened.
    I also tried making a basic Word doc with just the hyperlink to another document.  It works fine in Word, but, when saved as a PDF, the hyperlink does the same behavior-- tries to connect to the web instead of opening the file on the computer.
    I have a lot of experience building Acrobat PDF forms and working in Acrobat, and I'm almost certain I've created links that open another file on the computer in Acrobat before, but I'm out of ideas and an internet search isn't turning up much.  I welcome any suggestions for things to try.  Thank you!

    This is what I currently have, and it attempts to open in a web browser.  Do you know of a setting in Acrobat I might need to change, or any other solution to tell Acrobat to open the "file:" URL as a document, not try to start the web browser?

  • Help! How to e-mail a PDF (from Pages) with active web links!

    I have been working on this for hours without any success! I would be so grateful for a brainy Apple wiz to help me out. I am creating a Pages document that has active web links in it. My goal is to e-mail my document with the active web links in it.
    So - If I export my Pages doc as a PDF to my desktop, the links work great! However - the moment I put that PDF into an email and send it the links become inactive. Is there any way to create a Pages document with web links > Export it as a PDF > Then mail with active (clickable) links? I have tried many times without success.
    If the answer to my question is no, does anyone have a tip for where I can create a PDF and mail it with active links? Will any of the Adobe programs work for this type of thing?
    Thanks so much!!
    Kristen

    Using Pages '09 v4.2.
    I just tested this. Assumption: You have the “Windows friendly attachments” checked in the attachments panel.
    Your Pages document is open. The web links are active. You want to get it into Mail.
    From the Pages menu bar, choose Share > Send Via Mail > PDF.
    Mail will open with a compose window. Your PDF will be attached as a full view document. You see the links present in the PDF.
    Now, click near the web links. This shows your PDF in blue. Now right-button click, and choose View as Icon from the pop-up panel.
    Now mail it to yourself on another account that Mail can open.
    You will see the web links in the PDF.
    Right-button click on a link and from the pop-up menu, choose Open with Safari.
    If you chose Quick Look, it would pop open the PDF and offer to open it further in your default PDF viewer. In my case, it is Adobe Reader.
    If Reader opens this PDF from the Mail attachment, the web links remain active.
    Does this solve your issue?

  • Add Non-Standard Web Link in Mac Mail

    Does anyone know how to add a non-standard web link? The add link dialog box does not like my url.
    I need to add a link like this: http://someserver100/index.html.
    It disables the "OK" button as soon as I add the "100" after "someserver".
    Prior to the Leopard upgrade I never had a problem doing this. Now it seems that Mail is trying to be too clever. Please help, this is an important business need for me to be able to send links like this.

    I didn't originally go deep into detail as not to bore, but maybe the details will make the difference.
    I am a web developer. I have a client that I vpn into to make web updates. The server that I work on is a testing / development server, not the outside world facing production server. The server is not viewable via a domain name. So I can not get to it by typing www.domainname.com. Instead, the client's IT guys have a host name set up for the server that I need to use due to some of the back end technology that serves the pages.
    The server name is "development100".
    In order for me to view pages on this server, I had to make an entry in my host file so my browser would know what ip address "development100" is associated with. That way whenever I type "http://develoment100" into my browser's url bar to proof my web work it would resolve me to the testing / development server.
    Now, once my changes are done and posted, I need to send a notification email to the IT staff that servers two purposes. First, it gives them an exact url laundry list of what files have have updated. Second, it gives them a link to click for each item that will allow them to proof that html, jpeg, etc.
    A typical item in this list would like like this: http://development100/index.html
    That link should send them directly to the index page on the server for example. I have be using this system of building the notification emails with these links for over five years and prior to upgrading to Leopard, it always worked.
    Now, if I try to "Add Link" and type "http://development100/index.html" in the dialog box. The "OK" button will become disabled as soon as I key in the first number in that link.
    If I don't "Add Link" and just key "http://development100/index.html" into the body of the email the link will cut off at the first number as well. So the link will look like this: "http://development"
    Sorry for the long explanation, but I think that it is necessary. The answer may just be that Apple is trying to verify / qualify links automatically and wont let numbers go in the link name without a .com / suffix. Thanks for the help.

  • How to have web link not appear as a blue link

    Creating a tri-fold brochure.
    Website address becomes a blue hypertext link.
    How to eliminate?
    Thx,
    Steve

    Hi Steve,
    Search the Pages User Guide pdf document included with your copy of Pages '08 for "URL" (without the quotes). You'll get about a half dozen hits, including one on page 113:
    (paraphrased)
    Go to the Pages menu > Preferences...
    Click the Auto Correction button.
    Uncheck the checkbox for "Automatically detect web and email addresses.
    Close preferences.
    Regards,
    Barry

  • How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    How do I add URI web link with custom tooltip like "CLICK HERE TO UPDATE" instead of URI web link in tooltip.

    You've probably found an answer to this by now, but I think this has been addressed in another forum -- The link below suggested using a button and adding the tooltip to the button. 
    https://forums.adobe.com/thread/304974?start=0&tstart=0
    Sounds like it would work but I haven't actually tried it. 
    Good luck~!

  • Mac won't open pdfs from web links.

    I am running Mac OS  v 10.5.8 and it suddenly stopped displaying PDFs that are opened via web links.  All I see is a grey screen with the file title.pdf at the top, no error message.  Has anyone experienced this or aware of a fix?  Soooooo frustrating.
    Thanks!

    Alternatively, you can select any PDF file from Finder, hit Command-i, or right click on the file and select Get Info.
    From there, change Open With to Safari.
    Then hit the button Change All.
    And done.

Maybe you are looking for

  • [SOLVED]Connecting to Verizon Mifi (wirelss hotspot) breaks everything

    This question is obviously network related, but I thought it would be more appropriately placed in this forum because it's really not so much a connectivity issue. I recently got my hands on one of those Verizon Wireless Hotspot Mifi devices: I obser

  • Passing date to xcelius dashboard using openDocument.jsp

    Hi. I created a xcelsius dashboard that uses WEBI report through live-office connection. this dahsboard was uploaded to BO server (InfoView), and I am using openDocument.jsp to view it. ht ejsp gets parameters that I use to set prompts. Well, for num

  • System copy with Export/Import Distribyted system UNIX database, Windows CI

    HI we have a distributed system witch I want to make a copy of Oracle Database on HP-UX CI + SCS on Windows Dual stack system  ABAP/Java 1)  I have made an system copy with data base copy tools, and that works fine. 2)  I have made a system copy expo

  • Error while make the appl in adobe air

    Hi, i got this when i tried to compile the air file frm flex " Error creating Air file:could not generate timestamp:connection reset . can any help me to resolve this issue ~~ sk

  • Besoin d'aide et conseil pour logo

    Bonjour à toutes et à tous, Voila depuis un certain temps j'ai créer un logo pour mes avatars et créations vidéos, le soucis est que, quelque chose me dérange dessus mais je n'arrive pas à mettre la main sur ce que je pourrai changer (panne d'idée et