No problems. I’m using IE6 browser. Along the top there’s a tool banner with: File, Edit, View, Favourites, Tools & Help. Click on
1) View – then…
2) Source
(Do this while you’re looking at web page!)
This will bring up another window that shows you everything that’s “underneath” your active web page. All the coding. All your typed words. And how your web page is laid out. A lot of people use this “source” view to see how a particular page is designed & coded.
I determined that you’re using diasy rae gemini template because I’ve already studied the template myself so I recognised the layout and the HTML coding. Using the above viewing formula, this is what I saw “underneath” your active web page, and what you wrote…
<div class="post">
<h5 class="storytitle" id="post-7">Cusano 18</h5>
<div class="storycontent"></div>
You’re asking how to remove the border “separator” from your Category titles. If you study your page layout, your category title sits between h5 tags.
<h5 class="storytitle" id="post-7">Cusano 18</h5>
Directly beneath that is your
<div class="storycontent"></div>
I believe your “separator” problem directly relates to the empty <div class="storycontent"</div>
. If you were to put dummy text…
… Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non…
between the div’s, then the separator will be forced to the bottom of the text and not directly underneath your category title.
Try it and see how you go. If you want to leave your page exactly like it is, ie: you’re not going to add any text beneath your Category Titles, try deleting the border in your css file (style.css) where it’s attached to the div “storycontent”.
Don’t forget, if you do remove this border-bottom from your style.css, then it will affect all further posts.