Hello,
I want to change the size of the Remove Friend, offline, online, send private message, etc. icons in the connectionBox but the sizes are fixed at 16x16px. Where can I change those size?
None of the sizes are fixed through CSS or HTML. Just upload larger images (replacing the existing ones). For instance the message (PM and Email) icons is 18x12 while the remove icon is 16x16. Inspecting with firebug reveals no size specific CSS or HTML. None of the icons have specific classes either so you'll need complex selectors as follows to adjust them individually through CSS.
Remove Icon
.connectionBox img[title~="Remove"]
Profile Icon
.connectionBox img[title~="Profile"]
Email Icon
.connectionBox img[title~="Email"]
PM Icon
.connectionBox img[title~="Message"]
The above assumes the titles haven't be changed through language plugins. Online status icons have classes as follows as is sized/styled purely though CSS.
Online
.cb_online
Offline
.cb_offline
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.
Ah, I see; wasn't clear what you meant by overlap. The size of the box it self is very restrictive and you'll need to increase that too. Please see the below CSS needed.
The above is another situation where classes are lacking so a bit of CSS trickery was needed. Other adjustments may need to be made to expand the box. This can be done much easier with CSS3 selectors, but don't advise using them until IE8-9 is more widely used; other browsers don't have issues with CSS3. Please note the important tag (doesn't work in IE6, but no longer an issue these days) is vital as in-line styles always have higher weigh then class styles; without the tag the in-line will just override your CSS.
Kyle (Krileon) Community Builder Team Member Before posting on forums:
Read FAQ thoroughly
+
Read our Documentation
+
Search the forums CB links:
Documentation
-
Localization
-
CB Quickstart
-
CB Paid Subscriptions
-
Add-Ons
-
Forge
-- If you are a Professional, Developer, or CB Paid Subscriptions subscriber and have a support issue please always post in your respective support forums for best results!
-- If I've missed your support post with a delay of 3 days or greater and are a Professional, Developer, or CBSubs subscriber please
send me a private message
with your thread and will reply when possible!
-- Please note I am available Monday - Friday from 8:00 AM CST to 4:00 PM CST. I am away on weekends (Saturday and Sunday) and if I've missed your post on or before a weekend after business hours please wait for the next following business day (Monday) and will get to your issue as soon as possible, thank you.
-- My role here is to provide guidance and assistance. I cannot provide custom code for each custom requirement. Please do not inquire me about custom development.