Question

I'm trying to figure out how to add an image between blog posts (i.e., a graphic basic divider line, not a border) on my website: www.sacspartans.org

I know how to create and div, add the image, etc. But I don't know what file to make the modification to. Does anybody know?

I'm using Toolbox, the bare bones starter theme.

Any help would be much appreciated.

EDIT: I opened up the index file... but I'm not sure where to add my div.

Was it helpful?

Solution

Add the div right above <?php endwhile; ?>

OTHER TIPS

Make it so that the three divs are like this:

<div class="div">
//blogpost 1
</div>

<div class="div">
//pic
</div>

<div class="div">
//blogpost 2
</div>

CSS

.div {
float: left;
display: inline;
//rest of css
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top