Page 1 of 1

Joomla 6 Templates Help

Posted: 24 Apr 2026, 23:30
by TechMistress
Hi!

I'm using the Spectrum template on Joomla 6. Where can I find documentation for this? I'd like to learn how to dow some basic things, but am not quite understanding the template system yet.

For eg.
1. How do I center the logo in one of the containders, rather than being in the left column.
2. Is there a reason for xuser.css, xxuser.css and 2xuser.css files that were included?

Just wanting to use the template efficiently, but I can't find instructions. This link doesn't offer any real information for using the template styles. (https://www.phoca.cz/documentation/99-p ... -component)

Thanks!

Re: Joomla 6 Templates Help

Posted: 25 Apr 2026, 14:25
by Jan
Hi,

2. No, these files are development files and were accidentally left in the package, you can delete them all - they are not more included in latest 6.1.6 package.

1. The whole grid system is based on the Bootstrap grid system and on the Bootstrap styling. So the base what the template does, is to provide based grid and you can add, edit or remove rows or columns easily. If you want to align the items, use the standard Bootstrap class for this. You really only need to know a few basic classes that can cover everything - alignment, padding, margin.

And it depends on where you want to align the logo.

- if only in logo box, then use column class:
Image

- if the whole row, then use row class:
Image

You can even use user.css to set the rules there.

Example, I will move the logo column on own row when I set, it gets size 12 and add center class:

Image

Then my logo is centered (text-center is Bootstrap class for centering the text):

Image

Jan