Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,
    It’s a theme case issue and you have to ask the icommerce theme author or support for a help.
    But I see that this theme utilises @media query to hide the price on purpose style.css:2331:

    @media (max-width: 768px){
    .shop-right .amount {
        display: none;
    }}

    Cheers,
    M

    Thread Starter eganet

    (@eganet)

    Thanks Mariusz for your quick reply.

    The guys of icommerce don’t reply my emails. I’m trying to fix this by myself.

    I have removed the line:
    @media (max-width: 768px){
    .shop-right .amount {
    display: none;
    }}

    But still have same problem.

    That file is still showing the style. Maybe its cached.

    Anyway, best not to edit that file as any edits will be overwritten by the next theme update. Instead, try this:

    @media (max-width: 768px){
    .shop-right .amount {
        display: inline;
    }}
    

    Put it at:
    Dashboard > Appearance > Customise > Additional CSS
    where it should load later than the style in style.css and so take precedence.

    Thread Starter eganet

    (@eganet)

    Mariusz and lorro, thank you both so much. Now it’s working.

    • This reply was modified 7 years, 8 months ago by eganet.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘The price on Single Product Page is not displaying on mobile’ is closed to new replies.