Page 1 of 1
featured product descrition miss bulleted list
Posted: Tue Jun 19, 2012 8:44 pm
by fancisco
Hi
I hope someone can help me slove this problem
I input product description in admin with Bulleted List
,but front featured product descrition miss Bulleted List,thanks
Re: featured product descrition miss bulleted list
Posted: Wed Jun 20, 2012 12:05 am
by leo
Open /catalog/styles/default/css2/category.css and /catalog/styles/default/css3/category.css and change
Code: Select all
.category ul, li{
left: 0px;
margin: 0;
padding: 0;
border: 0;
list-style-type: none;
display: block;
position: relative;
list-style-position: outside;
overflow: visible;
white-space: normal;
z-index: 10;
}
to
Code: Select all
.category ul, .category li{
left: 0px;
margin: 0;
padding: 0;
border: 0;
list-style-type: none;
display: block;
position: relative;
list-style-position: outside;
overflow: visible;
white-space: normal;
z-index: 10;
}
Re: featured product descrition miss bulleted list
Posted: Wed Jun 20, 2012 3:30 am
by fancisco
Very thanks LEO give me help,I change the code ,front product description with Bulleted list success,but the product list
And popular product Bulleted list overflow left border,can you change the product list to Gridview like home featured,thanks
Re: featured product descrition miss bulleted list
Posted: Wed Jun 20, 2012 4:35 am
by leo
The problem is inherited from the thickbox.css.
You have 2 possibilities:
- not to use thickbox, use fancybox
- delete
from the thickbox.css files.
Re: featured product descrition miss bulleted list
Posted: Thu Jun 21, 2012 9:21 pm
by fancisco
i test it ,bulleted list support ie 8,firefox ,google chrome, not support ie6 ,IPHONE safari,thanks LEO
Re: featured product descrition miss bulleted list
Posted: Thu Jun 21, 2012 10:58 pm
by leo
ie6 is not supported by AC any more.
Code: Select all
http://www.w3schools.com/browsers/browsers_stats.asp
I can see the bullets on my iPhone.
Re: featured product descrition miss bulleted list
Posted: Fri Jun 22, 2012 12:16 am
by fancisco
Thank you patience to answer,it support IPHONE safari,I have new problem, hoping you can help,which file i can modify image and price position and size
Re: featured product descrition miss bulleted list
Posted: Fri Jun 22, 2012 4:05 am
by leo
Images are determined in admin/configuration/setting/Display setting, Image tab and under Extensions/module. You can set
Featured, Latest etc. separately.
Price can be changed in the default.css, under .price_new
Install Firebug in Firefox, so that you can find easily which css file should be modified and what line.