I want to change the Css code… but which and how?

Attachment 36543

please have a look attached img.

I added a new link in the "jmtoolbar.html" http://www.joomlart.com/forums/showt…453#post410453

and then
When I scroll down in the mobile view, web site gets gap and a line.

1. want to disable the gap and line.
2. Between menu and hotsale, the gap is quiet big.
-- is it possible put some images in ?
-- or reduce the gap

thank you.

2 answers

Profile photo of Seoki Lee 1510.00 $tone May 7, 2014
Public

1. To remove the gap and line, please open the file /skin/frontend/default/jm_megamall/css/layout-mobile-portrait.css

At line 1025, replace this code;

Code:

.speciallinks {
    margin: 2px 0 0;
    position: relative;
    top: -170px;
}

With:

Code:

.speciallinks {
    margin: 2px 0 0;
    position: absolute;
    top: -170px;
}

2. To remove gap between menu and hotsale, open the file /skin/frontend/default/jm_megamall/css/layout-mobile-portrait.css

At line 961, replace this code:

Code:

#jm-tops2 .col3-set .col-2 {
    margin: 64px 0 0;
    width: 100%;
}

With:

Code:

#jm-tops2 .col3-set .col-2 {
    margin: 0;
    width: 100%;
}

Hope this helps.

#1

This question is now closed

Written By

Comments