#1 WordPress forum plugin created by gVectors Team

wpForo – WordPress Forum Plugin
  • Home
  • Forum
  • Migrate to wpForo
  • Addons
  • Addons Demo
  • Documentation

Forum

Home | Forum

wpDiscuz - WordPress Comment Plugin
  • Forums
  • Members
  • Recent Posts
Forums
Main Support Forums
How-to and Troubles...
Admin Note
 
Share:
Share
Tweet
Share
Notifications
Clear all

Style [Solved] Admin Note

    Last Post
RSS

Macky
Posts: 774
 Macky
Topic starter
November 5, 2021 3:28 pm
(@percysgrowroom)
Prominent Member
Joined: 3 years ago

I have changed some code for the admin note on my forum so it displays in a box.

I would like to display numerous admin notes as different coloured boxes, at the same time. And have them diaplyed as septate boxes. Can anyone help with this?

Thanks in advance

 

 

Forum Page URL
https://percysgrowroom.com/forum/

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Topic Tags
admin note
11 Replies
Chris
Posts: 1387
 Chris
Admin
November 6, 2021 8:45 am
(@chris)
Support Team
Joined: 10 months ago

Hi @percysgrowroom,

There are two ways to do that

Option 1 - Navigate to Dashboard > Forums > Tools > Misc admin page. Turn admin note editor to text mode. Add HTML with it CSS classes. 

Navigate to Dashboard > Forums > Settings > Styles admin page, put the appropriate CSS code in "Custom CSS Code" textarea.

Don't forget to delete all caches and press CTRL+F5 on frontend before checking. 

 

Option 2 Purchase wpForo Ads Manager add-on: https://gvectors.com/product/wpforo-ad-manager/

In case you want to say thank you !)
We'd really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.

Macky liked
1 Reply
Macky
 Macky
(@percysgrowroom)
Joined: 3 years ago

Prominent Member
Posts: 774
November 6, 2021 11:44 am
Reply toChrisChris

@chris Thanks for the inof mate. Ill try that out, I already have adds manager too so that may also work 🙂 

Im not sure what to do with the Div thing you mentioned there,. I wonder if @Tutrix can help me with that? 

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Chris
Posts: 1387
 Chris
Admin
November 6, 2021 11:45 am
(@chris)
Support Team
Joined: 10 months ago

@percysgrowroom,

Posted by: @percysgrowroom

Im not sure what to do with the Div thing you mentioned there,. I wonder if @Tutrix can help me with that? 

Using HTML to create those blocks.

In case you want to say thank you !)
We'd really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.

6 Replies
Macky
 Macky
(@percysgrowroom)
Joined: 3 years ago

Prominent Member
Posts: 774
November 6, 2021 11:49 am
Reply toChrisChris

@chris 

The code I use right now is CSS and is in my themes customs CSS:

#wpforo #wpforo-wrap .wpforo-admin-note {
border: 2px solid #1a5c00;
background: #649e2d;
border-radius: 5px;
padding: 5px

}

Can I alter this to make each new line a different box? 

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Chris
 Chris
Admin
(@chris)
Joined: 10 months ago

Support Team
Posts: 1387
November 6, 2021 12:02 pm
Reply toMackyMacky
Chris

@percysgrowroom,

you need to create new boxes with HTML, CSS is for HTML design, etc.

 

In case you want to say thank you !)
We'd really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.

Macky
 Macky
(@percysgrowroom)
Joined: 3 years ago

Prominent Member
Posts: 774
November 6, 2021 12:04 pm
Reply toChrisChris
Macky
Chris

@chris How can I create a new box using HTML?

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Tutrix
 Tutrix
(@tutrix)
Joined: 2 years ago

Honorable Member
Posts: 616
November 6, 2021 12:07 pm
Reply toMackyMacky
Chris
Macky
Chris

@percysgrowroom 

<div class="adminnote-one">
<p style="text-align: center">
<span style="color: #ffffff">
Text Box one
</span>
</p>
</div>
<div class="adminnote-two">
<p style="text-align: center">
<span style="color: #ffffff">
Text Box two
</span>
</p>
</div>
<div class="adminnote-three">
<p style="text-align: center">
<span style="color: #ffffff">
Text Box three
</span>
</p>
</div>

css

.adminnote-one {
background: #f00;
}
.adminnote-two{
background: #f90;
}
.adminnote-three {
background: #1a80db;
}
 text-box.jpg

visit my wpForo > Tutrix.de with lots of customization & modification, inclusive chat

Chris
 Chris
Admin
(@chris)
Joined: 10 months ago

Support Team
Posts: 1387
November 6, 2021 12:20 pm
Reply toChrisChris
Macky
Chris

Here is the HTML for admin note:

<div id="wpforo-admin-not-box1"> Here Must be Your Text </div>
<div id="wpforo-admin-not-box2"> Here Must be Your Text</div>
<div id="wpforo-admin-not-box3"> Here Must be Your Text</div>

and the CSS for the HTML:

#wpforo-admin-not-box1, #wpforo-admin-not-box2, #wpforo-admin-not-box3  {
   background-color: #a5b8a5;
   width: 98%;
   margin: 10px 8px !important;
   height: 50px;
}
#wpforo #wpforo-wrap .wpforo-admin-note {
   padding: 0 !important;
}

In case you want to say thank you !)
We'd really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.

Tutrix and Macky liked
Macky
 Macky
(@percysgrowroom)
Joined: 3 years ago

Prominent Member
Posts: 774
November 6, 2021 1:04 pm
Reply toChrisChris
Chris
Macky
Chris

@chris This has helped me understand the whole thing much more mate!! Thank you very much!

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Chris liked
Macky
Posts: 774
 Macky
Topic starter
November 6, 2021 12:11 pm
(@percysgrowroom)
Prominent Member
Joined: 3 years ago

Perfekt!!!!!!!!!!!!!!

Danke, Mann, ich werde das hinzufügen und sehen, ob ich es an meinem Ende zum Laufen bekomme !! Sehr geschätzte Tutrix

----------------------------------

Perfect!!!!!!!!!!!!!!

Thanks man, I will add that and see if I can get it to work on my end!! Much appreciated Tutrix

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Tutrix liked
Macky
Posts: 774
 Macky
Topic starter
November 6, 2021 1:28 pm
(@percysgrowroom)
Prominent Member
Joined: 3 years ago

Looks awesome, thanks for your help guys! 

Check out my Wpforo forum, lots of customisations and add ons 🙂
Percys Grow Room

Tutrix and Chris liked
  All forum topics
  Previous Topic
Next Topic  
Related Topics
  • Memberpress unauthorized message
    7 months ago
  • Comment modifier l'introduction du forum ?
    8 months ago
  • Adding text to blocked forums
    10 months ago
  • notify members inside of wpforo for a violations ?
    1 year ago
  • Incorrect display of blocks in admin notes
    2 years ago
Topic Tags:  admin note (7),

Forum Search

Join Us!

Download wpForo plugin
on WordPress.org

wpForo Addons

wpforo-private-messages wpforo-advanced-attachments-128x128 wpforo-embeds-128x128 wpForo User Custom Fields addon wpForo – Blog Cross Posting addon wpForo Ads Manager wpForo – WooCommerce Memberships Integration wpForo Emoticons wpForo – Tenor GIFs Integration
View all Addons »

Recent Topics

  • Forum description

    By Vijiki, 31 mins ago

  • Moderation Turned Completely Off...User's Posts Are Still "Awaiting Moderation"...

    By Noved, 4 hours ago

  • Slight changes to my forum

    By marios, 17 hours ago

  • No Wpforo widget

    By Vijiki, 1 day ago

  • Guest to not see recent posts on Recent activity page

    By OMTesla, 1 day ago

  • Prevent access to the url "community"

    By totor, 2 days ago

Topic Tags

  • css50
  • translation49
  • plugin conflict48
  • seo45
  • new features44
  • buddypress42
  • ultimate member40
  • avatar40
  • forum40
  • moderation38
  • login38
  • registration36
  • threaded layout35
  • cache33
  • editor32
  • menu32
  • shortcode31
  • forum accesses30
  • spam29
  • phrases28
View all tags (2163)

Recent Posts

  • Forum description

    I wanna make the forum description to show only when th...

    By Vijiki, 31 mins ago

  • RE: How to schedule a topic?

    When will this be available?It'll be a very good featur...

    By Joselito, 2 hours ago

  • RE: Moderation Turned Completely Off...User's Posts Are Still "Awaiting Moderation"...

    Hi @noved, Please read this instruction:/p>

    By Robert, 3 hours ago

  • RE: Guest to not see recent posts on Recent activity page

    @omtesla, Please take a screenshot of your Usergroups...

    By Robert, 5 hours ago

  • RE: Can I permanently set a single user to have all posts moderated?

    @fawp Realistically that might be what happens at the e...

    By Upstart DM, 7 hours ago

  • RE: No Wpforo widget

    @vijiki, To Remove Share Buttons, go to Dashboard >...

    By Chris, 10 hours ago

  • RE: Dark mode

    @vijiki I think you should invest some time to learn th...

    By dimalifragis, 12 hours ago

Share:
Share
Tweet
Share
  Forum Statistics
20 Forums
9,771 Topics
49.5 K Posts
4 Online
44.4 K Members

Latest Post: Forum description Our newest member: Stinging Nettle Testosterone Recent Posts Unread Posts Tags

Forum Icons: Forum contains no unread posts Forum contains unread posts

Topic Icons: Not Replied Replied Active Hot Sticky Unapproved Solved Private Closed

Powered by wpForo | Copyright © 2016-2022 gVectors Team
Copyright Registration Service - Click here for more information or to register work
wpForo is Registered with the IP Rights Office
Copyright Registration Service

Ref: 4477265538
  • Home
  • Forum
  • Migrate to wpForo
  • Addons
  • Addons Demo
  • Documentation