Hi,
Looks like you are not using a child theme. The changes you make to rtPanel would be lost if you update it. Try using the example child theme, and then you can customize your theme all you want without losing on the updates.
Try putting the following styles in your child theme and see if it does the trick.
#rtp-primary-menu {
border-top: 2px solid #041b23;
border-bottom: 2px solid #041b23;
}
.post-header {
border-bottom: 2px solid #041b23;
}
.hentry {
border-bottom: 2px solid #041b23;
}
#sidebar {
border-left: 2px solid #041b23;
padding-left: 5px;
}
This would push your sidebar down so to handle that you would need to copy the sidebar.php
from your parent theme and place it in the child theme. Then on this line of your sidebar.php
add an extra class rtp-omega
to #sidebar
in the following manner
Regarding the font style, the content on the main page is the excerpt, so it strips the html tags and just displays the text.
If you would like to format the way the excerpt appears on archives you could manually add an excerpt for a particular post. This can be done by editing the required post and going to the “Excerpt” Metabox ( If this metabox is not visible try checking it from the screen options available at the top right corner of the edit post page ). Here you can type in your excerpt alongwith the required html tags. This won’t be stripped or truncated and will show as it is.
Let me know if this works for you.