Guilherme Garcia da Rosa
Guilherme Garcia da Rosa

Reputation: 1030

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

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.

Upvotes: 1

Views: 2933

Answers (1)

Llewellyn
Llewellyn

Reputation: 398

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.

Upvotes: 2

Related Questions