Ok so when I input
<a href="yourpdfurl">HECO Line Sheet Download</a
just as you described above it did add a link to the header on all pages. However, when I click it it does not open the pdf file in the same tab immediately. If I “right Click” and open tab in new window it will open a new tab and load the PDF just fine.
Also it is not placed under the Savannah, GA (678) 956-3100 as I wanted it to look uniform. Any suggestions? I can get you all of my coding for anything you want if it will help us.
Any suggestions on how to make it clickable with out having to right click and open?
Also I did not know where to place the <div id=”header-links”>
I am still learning. Sorry for the inconvenience. I really appreciate your help.
Here is my coding for the section we have been working in.
<!– main wrapp starts–>
<header id=”header”><!–header starts –>
<div class=”container”>
<div id=”header-top”> ” id=”logo”>
<?php if (isset($smof_data[‘logo_upload’]))
if ($smof_data[‘logo_upload’]!=”)
{ ?>
<img src=”<?php echo $smof_data[‘logo_upload’]; ?>” />
<?php
}
?>
<div id=”header-links”>
<?php
if( $enable_social != 0 ):
?>
<ul class=”social-icons header”>
<!– Social icons –>
<?php if( $social_twitter != null ):?>
<li class=”twitter”>” title=”Twitter” target=”_blank”><i class=”icon-social-twitter”></i>
<?php endif; ?>
<?php if( $social_facebook != null ):?>
<li class=”facebook”>” title=”Facebook” target=”_blank”><i class=”icon-social-facebook”></i>
<?php endif; ?>
<?php if( $social_googleplus != null ):?>
<li class=”googleplus”>” title=”Google+” target=”_blank”><i class=”icon-social-gplus”></i>
<?php endif; ?>
<?php if( $social_pinterest != null ):?>
<li class=”pinterest”>” title=”Pinterest” target=”_blank”><i class=”icon-social-pinterest”></i>
<?php endif; ?>
<?php if( $social_linkedin != null ):?>
<li class=”linkedin”>” title=”Linkedin” target=”_blank”><i class=”icon-social-linkedin”></i>
<?php endif; ?>
<?php if( $social_dribble != null ):?>
<li class=”dribbble”>” title=”Dribbble” target=”_blank”><i class=”icon-social-dribbble”></i>
<?php endif; ?>
<?php if( $social_skype != null ): ?>
<li class=”skype”>/” title=”Skype” target=”_blank”><i class=”icon-social-skype”></i>
<?php endif; ?>
<?php
endif; // enable_social
$enable_header_phone_number=(int)$smof_data[“enable_header_phone_number”];
if ($enable_header_phone_number)
{
?>
<p>
<h4>Raleigh, NC:?<span>(678) 956-3100 </span>
Savannah, GA:?<span>(912) 660-5601</span> </h4>
<a href="https://www.hollisequipment.com/wp-content/uploads/2014/09/HECO-Linesheet-Ric-Hollis.pdf"
>Ric’s Line Sheet Download
</p>
<?php } ?>
</div>
</div>
</div>
<div id=”main-navigation” class=”fixed”><!–main navigation wrapper starts –>