• Hi, thanks for the plugin, it does exactly what I want and pretty painlessly.
    My only problem is that although I have changed the css so that the height of the box is set, the nav bar keeps moving up and down, so when it rotates to the next post the nav buttons might be higher or lower than before. site is https://www.lactivist.net – many thanks for any help, I’ve been fiddling around with the css but I just can’t crack it.

Viewing 1 replies (of 1 total)
  • mahalie

    (@mahalie)

    Looks like you figured it out. For other folks, add overflow:hidden and fixed height to div.rp_post_content, like so:

    div.rp_post_content {
      height:200px;
      overflow:hidden;
    }

    Any content exceeding height will now be cut off but the content area will always stay the same size so nav will not move around. Another way would be to to make the nav bar position:absolute but that requires tweaking of several components and is for the more advanced CSS user.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Rotating Posts] keeping the nav bar in the same place’ is closed to new replies.