How can I change the position of Joomla's articles?

2.9k views Asked by At

How can I change the position I want an article to be? The default is the center, just like a blog.

I tried to use the modules:

-Articles as Module

-Articles Anywhere

but i didn't have any success.

1

There are 1 answers

0
Llewellyn On BEST ANSWER

Your question sounds like you don't know Joomla that well, or you need to explain a little more.

Because your question leaves us with a thousand answers.

To move text to the right with html you can use inline style tag to float your text like this:

<p style="float:right;">your text</p>

or you can use CSS styles like this

<style type="text/css">
.classname {
 float:left;
}
</style>
<p class="classname">your text</p>

To move modules around in Joomla take a look at this YouTube video

But I am not sure if this is what you are asking.