Download all Joomla templates including quickstart (demo)only $24.99

Forum

Important - Hands Up!

- Please ask using the account with which you made the purchase or download of our products and in its respective category.
- If you bought our products in another market, ask your questions in that market, not here.

* ADD PRODUCT NAME IN START OF SUBJET

Littles: System Message Container on Top and Centered

  • S
  • spike Premium Member
  • Topic Author 1 month 1 day ago #1
How can I center the System Message Container to the top. I don´t want it on the bottom.

Found this in css:

#system-message-container {
  position: fixed;
  top: 6px;
  right: 15px;
  max-width: 350px;
  z-index: 9999;
}

After change bottom to top, System Messages appear at the top of the page, but not centered. Can You help me please.

Thanks in Advance.

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

  • L
  • leoalv Moderator
  • 1 month 1 day ago #2
This should do the job.
Code:
#system-message-container {max-width: 350px; position:fixed; top:5px;left:50%;bottom:auto;transform;translateX(-50%); z-index:9999;}
Regards
The following user(s) said Thank You: spike

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