Responsive paragraph text

Hi Themeco,

I am trying to get my text to stretch out on mobile devices but it is not

That is how it looks on my real device

Any suggestions?

I have this css I’m working with but to no desired results

    .stretch{
        
        width:100% !important;
        height:100px !important;
        font-size: 15px !important;
        text-align:center !important;
        margin-left:0px !important;
        margin-right:0px !important;
        padding-left:10px !important;
        padding-right:10px !important;
 }        

The link is https://demo.wmmajaliwa.com/why-we-exist/

Thanks

Fixed it

Added responsive text from settings

then overode the margin and padding

That worked for me

Thanks

Hi Wilfred,

Glad that you have managed to fix the issue. Alternatively you can add the code below too:

@media (max-width: 767px) {
 .stretch-me {
    padding: 0 !important;
    margin: 0 !important;
 }   
}

Thank you.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.