Notifications
Clear all

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

5 Posts
2 Users
2 Likes
385 Views
forummember
Posts: 119
Topic starter
(@forummember)
Estimable Member
Joined: 1 year 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: 1247
(@tutrix)
Noble Member
Joined: 4 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: 1 year ago

Estimable Member
Posts: 119

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: 4 years ago

Noble Member
Posts: 1247

@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: 1 year ago

Estimable Member
Posts: 119

Thank you so much @tutrix . Appreciated 🙂