Are you enjoying the extensions? Did you like the support? Help others decide.

Leave a review

file Details shown twice in modal?

More
2 years 8 months ago #5499 by syw
Replied by syw on topic Details shown twice in modal?
You can style the contact page in the modal by adding styles in the global configuration's 'theming' tab.

The modal is calling pages from your site, therefore you can style its content.

Look for the 'additional CSS' parameter.

You can 'inspect' elements with your browser's dev tools if you need to find out how elements are called.

Olivier.

Please Log in or Create an account to join the conversation.

More
2 years 8 months ago #5504 by rbuelund
Replied by rbuelund on topic Details shown twice in modal?
Well I have tried to add this to the 'additional CSS":

#tcpmodal_111 .contentpane.modal{
  background-color:transparent;
}

It does not work. If I remove the background color of the .contentpane.modal in the browser dev pane, then it works as expected, so how do i catch that class ??

Please Log in or Create an account to join the conversation.

More
2 years 8 months ago #5505 by syw
Replied by syw on topic Details shown twice in modal?
You cannot use #tcpmodal_111 in front of .contentpane.modal because those elements are not in the same context.

Just use

.contentpane.modal {
background-color: transparent !important;
}

Not sure you will get expected results with a transparent color...

Olivier.

Please Log in or Create an account to join the conversation.

More
2 years 8 months ago #5506 by rbuelund
Replied by rbuelund on topic Details shown twice in modal?
Sorry, but this does not change anything in the modal:

.contentpane.modal{
  background-color:brown !Important;
}

??

Please Log in or Create an account to join the conversation.

More
2 years 8 months ago #5507 by syw
Replied by syw on topic Details shown twice in modal?
Did you add the code in the global configuration's theming tab of the extension like I mentioned in the first post of this page?

And are you showing, in the modal, the contact view from the extension and not the contact view of the core Joomla contact?

I have tried it myself and it is working.

Olivier.

Please Log in or Create an account to join the conversation.