Copy link to clipboard
Copied
I feel like a dinosaur! I had PhotoShop 9. Yes, many eons ago! I just got on PhotoShop CC today.
I need to create a header for a website. Simple text header graphic but need the background transparent so I can use it on varied textured backgrounds.
Help! I'm not seeing how to set it up.
brianl51359352 wrote
I need to create a header for a website. Simple text header...
Use Web Fonts instead of images. The main advantage to web fonts is the content can be indexed and translated because it's real text. Google and Typekit have large libraries of web fonts ready for copy & paste insertion. And you can style the fonts as needed with CSS code.

HTML & CSS Code:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Google Web Font Demo</
...Copy link to clipboard
Copied
'
Or turn off your solid background layer in the layers panel and save as a .png
Copy link to clipboard
Copied
brianl51359352 wrote
I need to create a header for a website. Simple text header...
Use Web Fonts instead of images. The main advantage to web fonts is the content can be indexed and translated because it's real text. Google and Typekit have large libraries of web fonts ready for copy & paste insertion. And you can style the fonts as needed with CSS code.

HTML & CSS Code:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Google Web Font Demo</title>
<!--Google Web fonts-->
<link href="https://fonts.googleapis.com/css?family=Permanent+Marker" rel="stylesheet">
<style>
body {font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";}
h1 {font-family: 'Permanent Marker', cursive; color:red;
</style>
</head>
<body>
<h1>This is a Google Web Font</h1>
<h2>This is normal text...</h2>
</body>
</html>
Graphics for modern web sites have changed a lot in recent years, too. For text, logos and icons, I recommend using Illustrator and exporting to SVG (scalable vector graphics). The advantages to SVG over raster images (JPG & PNG) are 3 fold. 1) better image quality on hi-DPI displays. 2) your SVG can be re-scaled without losing any details. 3) SVGs can be styled with CSS code.
Nancy
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more