MyBB Community Forums

Full Version: Fix for missing mysupport icons in usercp and modcp here
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Original solution provided as a response here: https://community.mybb.com/thread-220224...pid1317451

Now providing hete in hopes the solution will be applied here

(2018-10-22, 10:38 AM)Ikerepc Wrote: [ -> ]
(2018-10-16, 11:45 AM)Serpius Wrote: [ -> ]UserCP is showing text being out of alignment.

See the screenshot.

[Image: bd0a216c74afc5c55a65834ea3818958.png]

I tryed to report this few years ago...
https://community.mybb.com/thread-168429.html

It is because in the mysupport plugin. It  uses individual icons and not a sprite and without those in the images/usercp and images/modcp folders it will show this issue.  

For usercp:

[attachment=41150] mysupport_assigned.png

[attachment=41151] mysupport_support.png

.usercp_nav_support_threads {
	background: url(images/usercp/mysupport_support.png) no-repeat left center;
}

.usercp_nav_assigned_threads {
	background: url(images/usercp/mysupport_assigned.png) no-repeat left center;
}


For modcp:

Same issue it needs icon in images/modcp


[attachment=41149] mysupport_technical.png


.modcp_nav_tech_threads {
	background: url(images/modcp/mysupport_technical.png) no-repeat left center;
}

NOTE:

** Uploading those images is the solution /  fix as is.

*** or the css will have to be modified to utilize items  from the sprites.

Example:

.usercp_nav_support_threads {
	padding-left: 40px;
	background-position: 0 -200px;
}

.usercp_nav_assigned_threads {
	padding-left: 40px;
	background-position: 0 -200px;
}

Though, I suggest not to do so and simply use the plugin images as intended rather than modify for sprites due to the length of the nav items titles for the 2 items perhaps causing issues using the left padding and sub pencil item in sprite not to mention it makes it appear like sub items of subscriptions if you use said sprite item.

**** Attached below are the missing icons mentioned from the mysupport plugin for images folders /usercp and /modcp in a .zip file Upload.zip

[attachment=41148]