MyBB Community Forums

Full Version: Add some links like this in index ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I would add some links in my community index like the picture in attachement 

How can I do that ? plugin ? code ? what Must I do thank you in advance @};-
(2018-10-28, 08:12 AM)M!X0R Wrote: [ -> ]Hello,

I would add some links in my community index like the picture in attachement 

How can I do that ? plugin ? code ? what Must I do thank you in advance @};-

I think what you are looking for is HERE.
That's what I'm seeking for since I built my community Thank you so much Man !

The Plugin Damaged All my ZIP RAR Attachements I Disabled it Confused
Alternatively you could do this manually by navigating to Index Templates --> index and right below {$header} add in something along these lines:
<div style="background-color: #fff6bf; border: 1px solid #ffd324; text-align: center; border-radius: 5px; padding: 8px 12px; margin: 10px 0 0;">
	<b>10/28/2018</b> &ndash; I am your announcement text with a <a href="https://community.mybb.com/">link</a>!
</div>

You'll need to change background color and border color to the hexcode of your choice.
Add to css3.css before .pm_alert,

.info_alert,

Then add to global.css

.info_alert {
color: #000!important; background-color: #ddffff!important;
border: 1px solid #2196F3;
text-align: center;
padding: 12px 20px;
margin-bottom: 16px;
}

after

.red_alert a:link,
.red_alert a:visited,
.red_alert a:hover,
.red_alert a:active {
color: #A5161A;
}

Press CTRL+F5 after adding the changes in css.

Now where ever you want an information alert you can just add:

<div class="info_alert">Testing</div>
I Sloved my problem...the plugin was encoded in ANSI which does not support my language so I changed the encoding to UTF-8 that's why damaged my RAR and ZIP Attachements then I tried UTF-8 without BOM encoding and the plugin work fine and the attachements  are undamaged after downloading  Big Grin

@Ashley1

I sloved Profile visitors Plugin with the same way !

Thank you so much for your support  Heart