Modify Joomla Contact Category Display


Author Message
Tony Arduini

Posted: 10/1/2013
Quote message 

Greetings,

I would like to modify the contact category display in my artisteer template. When it lists the members of the category they are displayed all jumbled up. I would like them to display in a nice organized manor like similar to what the default joomla template offers.

I noticed that you lose the subject headings and everything.

I thank you in advance for any help you can provide.
 
Tony Arduini

Posted: 10/1/2013
Quote message 

If this helps anyone. I have noticed that it seems to display the contacts categories in a bulleted list, not a table.
 
AlanH

Posted: 9/21/2015
Quote message 

I've noticed the same thing (with the latest joomla (3.4.4) and Artisteer) but I don't know if this is a template issue or a joomla core issue.

Anyone know?
 
AlanH

Posted: 9/21/2015
Quote message 

I think the reason it's changed from being a table to a bulleted list is that tables are not responsive.

I don't know how the list of contacts can be laid out as a table, but adding the following CSS has helped and it may be the best that can be done easily:

.pull-right {

float: right;
}

 
AlanH

Posted: 9/21/2015
Quote message 

A further help may be to add the following CSS as well. It should put all contact details in one line:

.list-title {

display: inline-block;
}