patriciadooley
Forum Replies Created
-
Forum: Plugins
In reply to: [Posts in Page] changing header (h2) to header (h3)I was able to figure this out after extensively researching. It was definitely PIP that I needed to edit (that discovery made the rest easier).
Once I found I needed to edit the PIP template loop, I added 2 lines to the loop. One for margin indent and one for justifying the paragraphs. That allows for better indented square paragraphs. Now, I just need to change heading size for PIP and it will be great.
My changes are below. The end loop for the margins is just before the end of the final ‘/div’.
‘<div class=”post hentry ivycat-post”>
<!– This changes margins of the postsinpage –>
<div style=”margin-left: 1em; margin-right: 1em”><!– This is the output of the post TITLE –>
<h2 class=”entry-title”>“><?php the_title(); ?></h2><!– This is the output of the EXCERPT –>
<div class=”entry-summary”><!– This justifies the sides to square up –>
<div style=”text-align: justify;”><?php the_excerpt(); ?>
<!– ends justification loop –>
</div>
</div>’
…added one more ‘</div>’ to end of post to stop margin indent loop (because I used it for header, summary and meta data).Forum: Plugins
In reply to: [Posts in Page] changing header (h2) to header (h3)I can’t edit my question. Sorry. I figured out it is not the header I need to change as it does not allow indenting. I am trying to indent the PostsInPage a little more to make it distinctive from the information that is “permanent” on the page. Is there an easy way to indent all PIP?
I tried messing with padding (changes ALL h2 items, not just PIP). It looks like PIP is ‘float: right’ but I cannot find a good margin or padding that allows me to make the PIP narrower (more indented).