
Originally Posted by
itdealshub
Thanx for the module.
Can you please help me removing space between slideshow and the free shipping banner i have on my site.
http://itdealshub.com/
I tried to edit define_main_page.php but cant find the thing to edit.
I dont like the space between slideshow and banner kindly suggest a fix.
Thanx
Open your stylesheet.css file and find #columnCenter (should be line 86), and add some padding to the top.
You currently have:
Code:
#columnCenter {
padding: 0 10px;
background: white;
}
The 0 10px makes it so there is zero padding top and bottom and 10px right and left.
Try this:
Code:
#columnCenter {
padding: 10px;
background: white;
}
Hope this helps
Bookmarks