Can someone help me get the Bag text on my Home Screen for mobile view?

Hi, Can someone help me get the BAG text on my Home Screen view for mobile view ? @PageFly-Kate

Hi @AbdulShakir ,

This is Kate from PageFly - Landing page builder, I’d like to suggest this idea:
Step 1: Go to Online Store->Theme->Edit code
Step 2: Asset->/theme.scss.css->paste below code at the bottom of the file:

@media only screen and (max-width: 749px){
    .small--hide {
        /* text-align: right; */
        display: block !important;
    }
    #customer_login_link,
    #customer_register_link{
        display: none;
    }
    .top-bar .search-bar__input,
    .top-bar .search-bar__submit{
        display: none;
    }
    
    .small--one-half {
        width: 100%;
    }
    .top-bar {
        display: inline-flex;
    }
    .site-header__cart {
        right: 5%;
        position: absolute;
        top: 15px;
    }
}

Hope my answer will help you.