Good day,
Styling questions
6 posts - 2 voices-
I am almost good to go with my store, yet I have some styling questions.Q1 - Product gridOn the main page (http://www.boekenbaron.nl/) I would like to mod the width of the product width. How can I do that?Q2 - Footer shifts to the left (any browser)I have noticed that if you go from main page to the category page, the links "sitemap" shift to the right. How can I fix this bug?Q3 - Footer displayed differently in IE"Copyright © 2010 - 2011. boekenbaron.nl" is centered, while browsing with internet exprorer. How can I fix this?Thanks in advancePosted 10 months ago #
-
Hi,
Q1 - Product grid
you can modify product width from css class -
.list-image {
float:left;
width:215px;
}
Above class you can find in the following file at line no : (3596)-skin/frontend/default/magik_books/css/styles.cssPosted 10 months ago # -
Q2 - Footer shifts to the left (any browser)
Go to -app/design/frontend/default/magik_books/template/catalog/product/list.phtml
At the end of the file you can see -
<?php echo $this->getToolbarHtml() ?>
< / div >
< / div >
<?php endif; ?>Just remove 2 closing div from above code so it will look like -
<?php echo $this->getToolbarHtml() ?>
<?php endif; ?>Posted 10 months ago # -
Q3 - Footer displayed differently in IE
Go to -
app/design/frontend/default/magik_books/template/page html/footer.phtmlIn this file
Add< div class="clear" >< / div >
Before< div class="copyright" >...< / div >Also Modify
skin/frontend/default/magik_books/css/styles.css
line no: (3030 )
replace -padding: 30px 10px;
withpadding: 10px;Posted 10 months ago # -
Thank you, very much! I have one more thing left.
I would like the product block on the main page (www.boekenbaron.nl) to be spaced same amount of distance to the right from the grey background as the slider above. How can I fix this?Posted 10 months ago # -
Hi,
Please modify -
skin/frontend/default/magik_books/css/styles.cssOn line no: 3626
Remove : padding:10px;
From ".main-binder" css class.Hope this help you.
Posted 10 months ago #
Reply
You must log in to post.

