• Resolved mjes1

    (@mjes1)


    On my blog http://lbs.layliturgy.org/ I have two problems with the iNove template:
    1. the symbol for tag appears at the end of the category line rather than at the beginning of the tag line. I have not yet found to code in order to correct the line break.
    2. I am using custom fields and have added them to index.php. This causes the category and tag lines to be overlaid by the title of the next post. How do I correct this?
    P.S. I’d also like to align the custom fields with the rest of the text … they appear to be too far to the left.

    I do like the template … sorry that my skills are rusty for solving my problems.

Viewing 2 replies - 1 through 2 (of 2 total)
  • for safety – save a backup copy first

    in style.css, add ‘clear:both;’ and maybe a padding of 5px to following style:

    .post h2 {
    	display:block;
    	margin-top:10px;
    	border-bottom:1px solid #CCC;
    padding:5px 5px 3px;
    	font-size:16px;
    	font-family:Verdana,"BitStream vera Sans";
    clear:both;
    }

    that should sort the overlapping heading.

    the next line should move the bullets of the edge; add this new line to style.css:
    .post .under ul { margin-left:20px; }

    and maybe adapt the style #pagenavi to keep the bottom of the blog tidy (untested):

    #pagenavi,
    #postnavi {
    float:left;
    clear:left;
    width:100%;
    	border-top:1px solid #CCC;
    	margin:10px -5px 0;
    	padding:10px 5px 0;
    }

    Thread Starter mjes1

    (@mjes1)

    Thank you. This cleared up the posting overlap and the alignment of the custom fields. Your post was clear enough that I’m comfortable that I’ll be able to handle the remaining issues.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Overlapping posts in iNove’ is closed to new replies.