Add Image in CSS file in SharePoint Visual Web Part

In this post, I will explain How to add Image in CSS file that placed in SharePoint “Images” Mapped Folder in SharePoint Visual Web Part solution.

You might also like to read How to Add Images to SharePoint Web Part in Visual Studio


Add Image in CSS file in SharePoint Solution

I have a SharePoint solution that holds images in the Mapped folder and some CSS styles, and I want to add an image as a background inside CSS filw with the correct relative image path.

"background-Image:URL(Image placed in Mapped Image folder)"

Steps

Create a SharePoint “Images” Mapped Folder in SharePoint Solution

  • Open your SharePoint Solution.
  • From solution explorer, right click to add a new folder.
  • Select SharePoint “Images” Mapped Folder as shown below
SharePoint "Images" Mapped Folder
  • Add your preferred image in this folder by adding an existing item.

Add Image Relative Path to CSS in SharePoint Solution

  • Open your CSS file > Drag the image in an appropriate place, where it will be inserted as HTML IMG Tag.
Add Image in CSS file in SharePoint Solution
  • Cut the image path without point .. then remove the <img> Tag to be the final URL as
    • “/_layouts/images/ImageName.png”
  • Paste it within “background-image:url(/_layouts/images/ImageName.png)”;
  • The background-image property should look like the following
Add Image in CSS file in SharePoint Visual Web Part
Add Image in CSS file in SharePoint Visual Web Part

Conclusion

In conclusion, we have learned how to add the correct relative image path to a CSS file in SharePoint solution.

Applies To
  • SharePoint 2016.
  • SharePoint 2013.
  • SharePoint 2010.
See Also

2 thoughts on “Add Image in CSS file in SharePoint Visual Web Part”

  1. Pingback: Add Image to Visual WebPart In SharePoint | SPGeeks

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top