aricberg
Forum Replies Created
-
Forum: Plugins
In reply to: Adding custom image to Facebooktimnicholson, Where exactly would I paste that code? I just yesterday started having this problem and am not sure why! Thank you for your help!
Forum: Fixing WordPress
In reply to: Adding Links to the HeaderIt’s located under your main blog files>wp-content>themes>inove>templates>header.php
Forum: Themes and Templates
In reply to: How do i set a faviconYeah, put it in there and it isn’t showing up.
Forum: Themes and Templates
In reply to: How do i set a faviconI can’t figure out where to drop that code either! And there is no start.php in the template file under theme either. Any advice?
Forum: Fixing WordPress
In reply to: Adding Links to the HeaderI figured out what my biggest issue was…. I didn’t realize that there were two different header.php files. One was under the template folder and once I found that it made my life a lot easier. Anyway, I got it all working like I wanted it to look. Thanks for the help. Do check it out here.
Forum: Fixing WordPress
In reply to: Adding Links to the HeaderThat’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: #b3b3b3And 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?