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
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:
Replace all with
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;