Hello mehedi57,
Unfortunately, the theme does not have any such an option that allows you to customize your mobile theme page, sorry! If you want to do this, you should use a bit of CSS code. You should provide your website URL and through such a useful screenshots you should explain what exactly you want to change.
Thanks for the message!
It shows my content like https://drive.google.com/file/d/1KRwFJPZQPxNlL24mmDOVEGU7_-_dCEOi/view?usp=drivesdk but h3 heading color is missing. How can I get this content heading color as like desktop version.
Hello mehedi57,
If you want to change the color for headings for mobile devices, you should use the media queries. As a hint, you should try using the code below and place it in Theme panel->Cusotm CSS Area.
@media (max-width:767px){
h1,h2,h3 {
color:red;
}
}
Thanks.