This works almost perfect apart from this double border:
View attachment 22600
You can see it here live: http://plexineu.com/index.php
Any ideas what might be causing this? I have looked into Style Properties.
#Notices .panel .noticeContent {
padding-right: 25px;
}
This works almost perfect apart from this double border:
View attachment 22600
You can see it here live: http://plexineu.com/index.php
Any ideas what might be causing this? I have looked into Style Properties.
#Notices .panel .noticeContent {
padding: 5px;
}
.notice_1 {
margin-bottom: 0px;
Hello Shelley, appreciate your effort!try doing the following:
Code:#Notices .panel .noticeContent { padding: 5px; }
Then adjust or remove
Code:.notice_1 { margin-bottom: 0px;
I'd personally remove the margin-bottom entirely
Hello Shelley, appreciate your effort!
I just removed the padding all together, because if I was following your suggestion it would be still having a double line around the notice.
This answers the problem, and it is really a design improvement so that individual notices can be completely styled.I added the suggestion for staff: http://xenforo.com/community/threads/notice-class-change.24785/
This answers the problem, and it is really a design improvement so that individual notices can be completely styled.
Right now, you can only change the global status of a notice, which removes the true ability to really individually style them, which is what Andrea wants, and I can also see a lot of advantage with.
XF just have to move the notice class as an outer div, instead of inner notice class. Then, you can pick out one notice and strip it to bare plain, without affecting global notices.
Yes, you had to "globally" change the styling all in order to change "one" notice look.
That is not feasible to custom style only "one" notice. Mike answered the question in the above link... which I updated whilst you were posting reply to original quote.
You must disable scrollable notices and make them stackable, to "not" change global notice styling... yet be left with the ability to style them uniquely without affecting other notice styles OR having to style every notice uniquely.
Create a new notice Andrea and add the following into the code area: This should remove the border, background from that specific notice you can then add in the logo html to display your xmas image. You will also have to uncheck "add default notice text styling". hopefully this will work for you and you can then take it from there by applying the image.
Code:<style type="text/css"> <!-- .PanelScroller .panel { background: none repeat scroll 0 0 transparent; .PanelScroller .scrollContainer { background-color: transparent; border: 0 solid #A5CAE4; } --> </style> <html code goes here>
Hello there, Shelley. I am using this to remove the default styling, while the Board Closed notice for instance still having the default style. What I used yesterday along with the Style Properties did work, but it caused the default notices to loose it's desing.
I have a very minor thing here, but I would like to remove the blue color (as seen in the screen shot below).Could you assist please on what to add to the css above?
View attachment 22640
As said before, my forum URL is http://plexineu.com/
.PanelScroller .scrollContainer, .PanelScrollerOff .panel {
border: 0 solid #A5CAE4;
}
That sadly didn't work. This is my code:Try ading the following into your notice area. I'm quite sure andrea had a similiar problem that we couldn't work around unless he disabled global styling. This might not work but worth a try:
Code:.PanelScroller .scrollContainer, .PanelScrollerOff .panel { border: 0 solid #A5CAE4; }
<style type="text/css">
.PanelScroller .panel {
background: none repeat scroll 0 0 transparent;
.PanelScroller .scrollContainer {
background-color: transparent;
border: 0 solid #A5CAE4;
.PanelScroller .scrollContainer, .PanelScrollerOff .panel {
border: 0 solid #A5CAE4;
}
</style>
That sadly didn't work. This is my code:
Code:<style type="text/css"> .PanelScroller .panel { background: none repeat scroll 0 0 transparent; .PanelScroller .scrollContainer { background-color: transparent; border: 0 solid #A5CAE4; .PanelScroller .scrollContainer, .PanelScrollerOff .panel { border: 0 solid #A5CAE4; } </style>
Yeah, i tried everything yesterday but I think your best bet is to remove the style property styling and simply create your own classes and style each one (notice) so it's uniquely styled. That said, your probably going to have to deploy other fixes when you have to deal with the tabs. I'd suggest looking at disabling the style property styling and switch to stacked notices it'll give you full control and you won't have to worry about styling it.
The only feasible way you could achieve individual styling of notices, with the ability to style a specific notice and use scrolling, based on the current method, is to copy the default styling for the outer containers, remove it all via the style properties, then reapply it to the inner most container that the same class resides for each notice.
That way, you could then use !important to override default styling, as all styling is then located on the inner most tag.
This would avoid having to disable scrolling and stacking notices. Not sure... of the affect, untested.
We use essential cookies to make this site work, and optional cookies to enhance your experience.