Cutline Theme Support Forums » Cutline Theme Support Forums

Adding navagation link

(2 posts)
  • Started 3 years ago by sandiegogal
  • Latest reply from beisbolct
  • This topic is not resolved

  1. 1st. time installing Cutline and a few basic questions:

    A. On top of page (front page archives about)How do I add CONTACT & change Front Page to Home? Also, is there an EZ way to add a larger RSS logo here?

    B. How do I change the links under the META widget?

    C. Lastly, if you look at the current test post, you'll see the text did not full go up the side of the photo. Yet, in the layout editor all looked fine. I even changed photos, but still cannot get text to align with top of photo.

    Blog is at:

    http://www.false-claims-act-health-care-fraud-whistleblower-attorney.com/falseclaims/

    Thanks in advance for the help.

    Posted 3 years ago #
  2. The answer to c is underneath. You need to add this code in your stylesheet. Also when you put the picture in, you need to align it when using the photo editor, you will see place to align the images.

    copy the following code into your stylesheet.

    .aligncenter,
    div.aligncenter {
       display: block;
       margin-left: auto;
       margin-right: auto;
    }
    
    .alignleft {
       float: left;
    }
    
    .alignright {
       float: right;
    }
    
    .wp-caption {
       border: 1px solid #ddd;
       text-align: center;
       background-color: #f3f3f3;
       padding-top: 4px;
       margin: 10px;
       /* optional rounded corners for browsers that support it */
       -moz-border-radius: 3px;
       -khtml-border-radius: 3px;
       -webkit-border-radius: 3px;
       border-radius: 3px;
    }
    
    .wp-caption img {
       margin: 0;
       padding: 0;
       border: 0 none;
    }
    
    .wp-caption p.wp-caption-text {
       font-size: 11px;
       line-height: 17px;
       padding: 0 4px 5px;
       margin: 0;
    }

    as far as B, I haven't figured that out either.

    the answer to A is in your header.php file.

    First make a contact page. then get the url.

    then on your header php file, look for the ul id=nav . this is what mine looks like.

    <ul id="nav">
    
    		<li><a <?php if (is_home()) echo('class="current" '); ?>href="<?php bloginfo('url'); ?>">Home</a></li>
    
    		<li><a href="http://soxanddawgs.com/about-us/">About</a></li>
    
            <li><a href="http://soxanddawgs.com/contact-us/">Contact</a></li>
    
            <li><a href="http://soxanddawgs.com/uconn-womens-basketball-schedule/">UConn Women's Basketball 2008-09 Schedule</a></li>
    
    		<li><a href="http://soxanddawgs.com/2008-new-england-patriots-schedule/">2008 Patriots Schedule</a></li>
    
    <li class="rss"><a href="<?php bloginfo('rss2_url'); ?>">RSS</a></li>
    
    	</ul>

    You'll see where I changed my Front page to home and added different pages as well.

    To answer your RSS button question, the answer is yes. In your cutline folder, there is an images folder. In the images folder is this file icon_rss.gif. What I would do is this. save the original one to your desktop and then upload a new one using the same filename (icon_rss.gif). That should alleviate that problem.

    If you have any questions or want to look at my navigation head to my site http://soxanddawgs.com and if you need more help feel free to email me through my contact page.

    Posted 3 years ago #

RSS feed for this topic

Reply

You must log in to post.