MyBB Community Forums

Full Version: Notice? & round trow corners
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4
I was wondering how do I get a Notice on my forum Like this.
[Image: 57949bac2d2c9d52aacb3413bff66ad1.png]

also how do i round the corners on this:
[Image: d6f15be4d65fe5250334508c87873b70.png]

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;
}
Thank you Smile
Mark at best answer!
how do i round the corners?
What corners? Printscreen please,i don't understand!
the bottom corners on this
[Image: d6f15be4d65fe5250334508c87873b70.png]
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?
[Image: b1b3856a50040da2dc32323bac914f7a.png]

i like mean only the bottom edges left and right slightly curved like:
[Image: 06f7385620d35f9fa1503a14774f070a.png]
Replace all with
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
Pages: 1 2 3 4