CSS Float moved up inside loop
-
I want to put a container with a list of links from within the post up INTO the Loop area, specifically the content area. Because the Loop template tag that generates the content is
the_content()
I put the tag to generate the container with the list of links below it, but still in the parent container of the content tag.Using CSS, I want to move the container UP so that when the page is generated, the container of links is floated to the right INTO the lower part of the content.
I’ve tried
position:absolute, position:relative, bottom:-200px, top:500px
, and different variations. Oh, I can move the container around, but it doesn’t “float”. In other words, the content goes right over the top of it.So how do I move a container up into the generated post content and make it float within the content?
- The topic ‘CSS Float moved up inside loop’ is closed to new replies.