That’s not quite what I’m looking for. I’m not trying to add my catergories, I’m trying to add external links. Here is the code that I would like to add to the black header section.
CSS:
#navbar {
width: 914px;
margin: auto;
text-align: right;
margin-top: 0px;
margin-bottom: 10pt;
font-variant: small-caps;
bgcolor: “black”;
}
#navtext {width: 914px; margin:auto; text-align: right; margin-top: 15pt; position:relative; padding-top:2pt}
ul {
margin:0;
padding: 0;
list-style:none;
width: 902px;
}
ul li {
float:right;
}
ul a { color: #d1d1d1; font-size: 0.83em; font-family: Arial, Helvetica, sans-serif; line-height: 1.3em; text-decoration: none; display:inline; padding: 0 0.5em; float:none }
ul .first a {
background: none;
}
ul a:hover {
color: #b3b3b3
And then the links:
<div id="navtext">
<ul><a href="https://www.aricberger.com/blog/">blog</a> <font color="#656565">|</font> <a href="../../about.html">about me</a></ul>
</div>
<div id="navbar">
<ul>
<li class="Wedding Gallery"><a href="jzgweddings.html">Specialty Weddings</a>
<li class="Engagement Gallery"><a href="../../engagements.html">Couples</a>
<li class="Families and Childrens Gallery"><a href="families.html">Family & Children</a>
<li class="Fine Art"><a href="../../portfolio.html">Commercial & Fine Art</a>
</ul>
</div>
Now, I know where to put the CSS but where do I add the links into on the PHP level?