Bullet Indentation Not Changing


Author Message
Ed Coyne

Posted: 3/24/2009
Quote message 

When you change the Indentation of bullets, from Default to some other value, nothing happens. The bullets stay left aligned, with no additional left margin or padding.

Artisteer 2.0.2.15338 Standard Edition
 
Marc Smith

Posted: 3/24/2009
Quote message 

Is this in the preview mode in Artisteer? Or in a final Output file for Wordpress? Or other template?

Bullets themselves have no "indent" styling, but the text appearing in Articles" or in "Blocks" has indent properties. The bullets should follow whatever indent you set for the entire area.

Any steps you can provide so we can test it?
 
phideaux

Posted: 4/5/2009
Quote message 

I also need help with this, for Joomla templates. There doesn't seem to be a way to indent the bullet graphic icon, they are stuck flush left. Bullets and their text are usually indented.

Any help would be appreciated.
 
Ed Coyne

Posted: 4/14/2009
Quote message 

Currently, I have to add a "margin-left: 30px;" to the style.css, in order to display the list properly. I'd really like to take care of this, using Artisteer, to eliminate editing the CSS, afterward.

In addition, adjusting the bullets, in Articles, should be separate from adjusting them in Blocks (currently no option for that). It appears as though those adjustments effect both areas.

Both the preview and final output are the same.
2.1.0.15753 Standard Edition
 
Ed Coyne

Posted: 4/14/2009
Quote message 

BOY, I wish we could edit or preview these posts!
 
Brian Mattocks

Posted: 7/2/2009
Quote message 

Is there a way to do sub-bullets in blocks? At present, I use blocks for secondary site navigation and cant find ways to do bullets/sub-bullets with different looks.
 
Kurian M. Tharakan

Posted: 7/20/2009
Quote message 

On a relatedtopic, where in Artisteer can you set the top / bottom margins of the bullets?

Also, what's the difference between template.css, template.ie6.css, and template.ie7.css?

If I want to make a CSS change, do I have to edit all of them?
 
Garry

Posted: 7/20/2009
Quote message 

template.ie6.css and template.ie7.css styles your pages in Internet Explorer 6 and 7 respectively while template.css styles pages in all other browsers
 
Kurian M. Tharakan

Posted: 7/21/2009
Quote message 

Quote Garry:

template.ie6.css and template.ie7.css styles your pages in Internet Explorer 6 and 7 respectively while template.css styles pages in all other browsers


Thanks.

Any ideas about setting the bullet top/bottom margins in Artisteer?

 
Garry

Posted: 7/21/2009
Quote message 

You can do it assigning line height of your choice like following:

line-height:12px
 
Kurian M. Tharakan

Posted: 7/26/2009
Quote message 

Quote Garry:

You can do it assigning line height of your choice like following:

line-height:12px


Here's an example what I'm speaking about: http://www.monetasource.com/index.php/terms-of-service

The normal paragraphs have a margin, but the bullets have none.

How can I set the bullets to a different margin?

 
Garry

Posted: 7/26/2009
Quote message 

Find out following styling rule in your template.css :

.Post ul li, .Post ol ul li {
background-image:url(../images/PostBullets.png);
background-repeat:no-repeat;
padding-left:11px;
}



and insert margin-top like: margin-top:7px;
 
Kurian M. Tharakan

Posted: 7/28/2009
Quote message 

Quote Garry:

Find out following styling rule in your template.css :

.Post ul li, .Post ol ul li {
background-image:url(../images/PostBullets.png);
background-repeat:no-repeat;
padding-left:11px;
}

That works!

Thanks.


and insert margin-top like: margin-top:7px;