Title text overtop of my Content in my Slider

Hello,

Using a plugin in Wordpress and trying to figure out why when the title is longer than one line that the title goes over the content in the slider…

I can’t seem to pinpoint where it is so that when the slider is one ling the content remains where I’d like it but two lines it should be below the second line of the title not overtop or behind…

Here is the link…

http://modocom.ca/wordpress/

Scroll down to the…

Poke around to learn more about us, or you can tell us about you.

and you will see right below it to the right I have a slider and the first post the title goes overtop of the content.

Thanks,

Mike

I can’t see the problem or have you fixed it or is it a specific browser issue?

Ok, I can see you have put a height 40px in there to keep the text clear.

The actual problem is that the span holding the title text is absolutely placed so you need to put it back into the flow and let the text take up normal space.


#rps .col p.post-title span {
    color: #000000;
    font-family: "DINPRO-Bold",Arial,Helvetica,sans-serif;
    font-size: 30px;
    font-weight: bold;
    line-height: 33px;
    margin: 0;
    overflow: hidden;
    padding: 0;
  /*  position: absolute;*/
    text-decoration: none;
}

Then you can remove the height you set and adjust padding etc in the other styles.