I have titles on my articles that when on a smaller screen wont break to the next line and instead the title moves down to the bottom as seen in the attached pics.
What can I add to get it to breaK?


I have titles on my articles that when on a smaller screen wont break to the next line and instead the title moves down to the bottom as seen in the attached pics.
What can I add to get it to breaK?


Hello There,
Thanks for writing in! To resolve this issue, please update your code
@media (max-width:480px){
.rpwe-img .rpwe-thumb{
float:none;
width:100%;
}
.rpwe-block .rpwe-title{
white-space:normal;
}
}
and use this instead:
@media (max-width:660px){
.rpwe-img .rpwe-thumb{
float:none;
width:100%;
}
.rpwe-block .rpwe-title{
white-space:normal;
}
}
Hope this helps. Please let us know how it goes.
Thank you, unfortunately it didnt work. 
Figured it out! Thanks
You’re welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.