X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Bullet Text not working (https://forum.x-cart.com/showthread.php?t=52589)

swartzieee 03-01-2010 01:09 PM

Bullet Text not working
 
When I tried to use text bullets on the Static Pages they would not show up. I tired coding them in by hand and by using the built in WYSIWYG web editor. I have installed the amazon red template from http://www.websitecm.com/x-cart-mods/cdseo-pro-x-cart-seo.html.

ie.

i wrote this code:
<strong>Why Shop at BuckeyeFanApparel?</strong></p>
<ul>
<li>
Shop 24-7 securely without having to leave home.</li>
<li>
Great product selection, prices and customer service.</li>
<li>
Easy returns and exchanges.</li>
<li>
Pay no sales tax (if shopping outside of AZ).</li>
<li>
Products usually ship within 24 hours (Monday - Thursday).</li>
</ul>

which displays correctly when viewing in the WYSIWYG web editor. but on the actual page it shows as:
Why Shop at BuckeyeFanApparel?

Shop 24-7 securely without having to leave home.
Great product selection, prices and customer service.
Easy returns and exchanges.
Pay no sales tax (if shopping outside of AZ).
Products usually ship within 24 hours (Monday - Thursday).




Thank you,

Jason

jdiehl 03-01-2010 01:34 PM

Re: Bullet Text not working
 
A link would be helpful to tell for sure.

Check the CSS maybe the bullet is turned off. Probably need to style it.

swartzieee 03-01-2010 01:43 PM

Re: Bullet Text not working
 
here is a link: http://www.buckeyefanapparel.com/About-our-site.html

Thank you for looking into this for me.

gizmo 03-01-2010 01:51 PM

Re: Bullet Text not working
 
Have you a ul class style at all, as there is no class related to the ul?

jdiehl 03-01-2010 02:14 PM

Re: Bullet Text not working
 
In /skin1/main.css:

ol, ul {
list-style:none;
}

Need to fix your CSS so that bullets appear.

jdiehl 03-01-2010 02:18 PM

Re: Bullet Text not working
 
Also in the same file your margin and padding are zero'd for ul/li so even clearing the list-style:none results in a bullet you can't see. You should add something like this to the end of your main.css:

div.content ul {
padding-left: 20px;
list-style: disc;
}

See if that gets you situated, should only fix lists in the content area by doing that.

swartzieee 03-01-2010 02:27 PM

Re: Bullet Text not working
 
The code you told me to add worked. I now have bullets. Can you please look at it one more time and see if i should change anything else.

gizmo 03-01-2010 02:29 PM

Re: Bullet Text not working
 
You now have bullets, wherever it has the ul class...............

I will let the other user continue for ya...............

gizmo 03-01-2010 02:31 PM

Re: Bullet Text not working
 
I mean you have bullets where maybe you don't want them as it's not a seperate class just for one set of Bullets

swartzieee 03-01-2010 02:33 PM

Re: Bullet Text not working
 
Yes Gizmo, this is not what I wanted. I wanted to bullet just some text for now on the about us page.


All times are GMT -8. The time now is 11:43 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.