Hi,
How do i easiest move the #system-message that by default is almost at the top of the page, to move it to a more convenient spot for your eyes, make a new place for it right above breadcrumbs for example..
Any ideas?
Thanks!
<?php if(count($app->getMessageQueue())) : ?>
<jdoc:include type="message" />
<?php endif; ?>
<div id="gkPageContent">
<?php if(count($app->getMessageQueue())) : ?>
<jdoc:include type="message" />
<?php endif; ?>
<div id="gkPageContent">
<?php if(count($app->getMessageQueue())) : ?>
<div class="sysmessages"><jdoc:include type="message" /></div>
<?php endif; ?>
.sysmessages { clear: both; }
#system-message dd.error {background:#E55E48;color: #FFFFFF; }
/* System messages */
#system-message dt {
display: none;
}
#system-message {
margin: 0 0 5px 0;
}
#system-message dd ul {
list-style: none !important;
}
#system-message dd {
padding: 5px 12px;
color: #fff;
font-size: 16px;
text-align: center;
font-weight: 300;
margin: -30px -10px 40px -10px;
background: #353636;
}
#system-message dd.error {
color: #fff;
background: #e55e48;
}
#system-message dd.notice {
color: #fff;
background: #418cd1;
}
#system-message-container {
padding: 0;
margin: 0;
}
#system-message dd { color: #fff!important;background: #418cd1!important; }