featured product descrition miss bulleted list

General discussion about AlegroCart - Post here if you can't find another suitable forum
Post Reply
fancisco
Posts: 5
Joined: Tue Jun 19, 2012 8:11 pm

featured product descrition miss bulleted list

Post by fancisco » Tue Jun 19, 2012 8:44 pm

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
Attachments
admin_product.jpg
admin_product.jpg (95.48 KiB) Viewed 9585 times
front_featured.jpg
front_featured.jpg (58.24 KiB) Viewed 9585 times

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: featured product descrition miss bulleted list

Post by leo » Wed Jun 20, 2012 12:05 am

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;
}

fancisco
Posts: 5
Joined: Tue Jun 19, 2012 8:11 pm

Re: featured product descrition miss bulleted list

Post by fancisco » Wed Jun 20, 2012 3:30 am

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
Attachments
home_featured.jpg
home_featured.jpg (221.52 KiB) Viewed 9576 times
product_list.jpg
product_list.jpg (181.85 KiB) Viewed 9576 times

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: featured product descrition miss bulleted list

Post by leo » Wed Jun 20, 2012 4:35 am

The problem is inherited from the thickbox.css.
You have 2 possibilities:
- not to use thickbox, use fancybox
- delete

Code: Select all

*{padding: 0; margin: 0;}

from the thickbox.css files.

fancisco
Posts: 5
Joined: Tue Jun 19, 2012 8:11 pm

Re: featured product descrition miss bulleted list

Post by fancisco » Thu Jun 21, 2012 9:21 pm

i test it ,bulleted list support ie 8,firefox ,google chrome, not support ie6 ,IPHONE safari,thanks LEO

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: featured product descrition miss bulleted list

Post by leo » Thu Jun 21, 2012 10:58 pm

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.

fancisco
Posts: 5
Joined: Tue Jun 19, 2012 8:11 pm

Re: featured product descrition miss bulleted list

Post by fancisco » Fri Jun 22, 2012 12:16 am

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
Attachments
product.jpg
product.jpg (104.11 KiB) Viewed 9549 times

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: featured product descrition miss bulleted list

Post by leo » Fri Jun 22, 2012 4:05 am

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.

Post Reply