Member Avatar for Member #46692

Just stumbled across a site with some awesome freebies.

http://www.premiumpixels.com/

Enjoy.

Dani AI

Generated

Nice find, — collections like that are handy for quick UI mockups (icons, ribbons, prebuilt buttons). A few practical notes to get the most out of freebies and avoid surprises:

  • Always check the included license and font usage before committing assets to a project (personal vs commercial, attribution required, redistribution rules). Confirm whether the download includes layered PSDs or SVG/vector sources so you can resize cleanly.
  • Look for a README or license file in the download and any listed font names so you can source proper webfonts if needed.

— if images on the page are not loading, try this quick troubleshooting checklist in order:

  1. Open developer tools (F12) -> Network tab -> reload and watch for 404 / 403 or blocked entries.
  2. Check the Console for mixed-content warnings (site over HTTPS loading images over HTTP).
  3. Disable adblock/privacy extensions or try an incognito window.
  4. Right-click a broken image, copy its URL and paste into the address bar — a direct 403/404 indicates hotlinking or server-side blocking.
  5. Try another browser or device to rule out local caching. If the problem persists, the host or CDN may have a temporary outage.

Practical integration tips:

  • Prefer SVGs or CSS buttons where possible for crisp scaling and fewer assets. When exporting raster slices from Photoshop, use “Export As” or “Generate Image Assets” and export at 1x and 2x for high-DPI displays. Optimize with tools like TinyPNG or SVGO before deployment. Use img + alt for meaningful content; reserve CSS background images for purely decorative UI flourishes.

A simple CSS fallback for an image-based button:

.button {
  display: inline-block;
  padding: 8px 14px;
  background: #2b8;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

If a specific image or console error is available, share that detail so the exact failure mode can be identified.

think have some problem in your site..the site images are not loading properly :-)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.