I was wondering how do I get a Notice on my forum Like this.
also how do i round the corners on this:
Thank you.
Read here:
http://docs.mybb.com/Help-Latest_News_Bar.html
Or use this html code:
<p class="notice">Stay on top of what's happening with MyBB: <strong><a href="https://www.facebook.com/MyBBoard">Like MyBB on Facebook</a></strong> or <strong><a href="http://twitter.com/MyBBGroup">Follow MyBB on Twitter</a></strong></p>
And css:
.notice {
background: #ADCBE7;
border-top: 2px solid #0F5C8E;
border-bottom: 2px solid #0F5C8E;
text-align: center;
margin: 10px auto;
padding: 5px 20px;
}
how do i round the corners?
What corners? Printscreen please,i don't understand!
the bottom corners on this
![[Image: d6f15be4d65fe5250334508c87873b70.png]](https://camo.mybb.com/6663cf417fce5a2310c12faf8a337b6712015079/687474703a2f2f692e6779617a6f2e636f6d2f64366631356265346436356665353235303333343530386338373837336237302e706e67)
Ok,open AdminCP/Themes and templates/you theme/global.css and find:
trow1 and add:
border-bottom-left-radius: 2em;
border-bottom-right-radius: 2em;
trow2 and add:
border-bottom-left-radius: 2em;
border-bottom-right-radius: 2em;
Note: You can change 2em in pixels, to your liking!
It did this?
i like mean only the bottom edges left and right slightly curved like:
![[Image: 06f7385620d35f9fa1503a14774f070a.png]](https://camo.mybb.com/3761e0d164ab9b2917ca5b5a38d28031680ee6e3/687474703a2f2f692e6779617a6f2e636f6d2f30366637333835363230643335663966613135303361313437373466303730612e706e67)
Replace all with
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;