Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

Style [Solved] How to remove the line or border?

5 Posts
2 Users
2 Reactions
658 Views
forummember
Posts: 122
Topic starter
(@forummember)
Estimable Member
Joined: 3 years ago

Hi 🙂

How can I remove this line before the My Profile and Topic Prefix? I check in the widget section but I cannot find the setting to remove. See the attached screenshot for referemce.

Please help.

Thanks in advance.

Topic Tags
4 Replies
Tutrix
Posts: 1522
(@tutrix)
Noble Member
Joined: 5 years ago

@forummember

the left border is from your wordpress theme
you can remove it in the forum with this CSS code

#wpforo #wpforo-wrap .widget-title, .wpforo-widget-wrap .widget-title {
 border-left: none;
}

Dashboard > Forums > Settings > Colors & Styles (Custom CSS)

3 Replies
forummember
(@forummember)
Joined: 3 years ago

Estimable Member
Posts: 122

Thank you so much @tutrix. 

One more thing, how can I make the "My Profile", "Forum" into bold or change the color?

Tutrix
(@tutrix)
Joined: 5 years ago

Noble Member
Posts: 1522

@forummember 

add to the CSS code above
font-weight + color

Example

#wpforo #wpforo-wrap .widget-title, .wpforo-widget-wrap .widget-title {
  border-left: none;
  font-weight: bold;
  color: #00ccff;
}
forummember
(@forummember)
Joined: 3 years ago

Estimable Member
Posts: 122

Thank you so much @tutrix . Appreciated 🙂