Aligning bullet points on specific page in Wordpress

I am trying to edit the alignment of bullet points on one of my pages - http://www.eclipse-experience.com/subdirectory/approach

I would like to have the text aligned and the bullet points just to the right of the block.

This text is in columns using shortcodes - would I add it to that CSS so it only affects that part?

Thanks!

Hi,

I’m afraid I know nothing of wordpress but I’m not quite sure what you are asking exactly?

I would like to have the text aligned and the bullet points just to the right of the block.

What do you want the text aligned to?

You want the bullet on the right of the text?

If you meant you just wanted the list indented a little then you could do it with this css.


.boxed-content li{
margin:0 0 0 20px;
}

Your lists are invalid though because you have no enclosing ul (or ol).

i.e.


<ul>
 <li>list</li>
 <li>list</li>
 <li>list</li>
</ul>

Sorry, I meant the bullets to the left of the text block!

My only issue is that I only want it to affect this page and not the blog posts, where the bullet points stay the same.

Does that make sense? So I would need to edit the alignment of the ul, I’m just not sure where!

Not to worry - figured it out! Thanks :slight_smile: