Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

New Logo Help

Featured Replies

Hello, I have been working on a new logo and think I have a sort of good one, its my profile picture. Do you like it? What could be better?

photo-1863.png

 

hmmm. I think the text needs working on. Extend the scale of the gradient, and add a stroke or a black outer glow, on a low opacity, just to make it pop out. I dont like the bevel and emboss. Try the outer glow instead. ;)

I'm of the opinion that a logo should give the full name of your business and/or give a very clear indication of what exactly you do (unless you're eBay, in which case everyone already knows what you do). Your logo does none of these things and if I didn't know your username here on WDF then I'd have no idea what the logo was for. Restaurant? Blog? Web design?

 

So aside from the technical/Photoshop aspects of it, I'd consider revisiting the concept entirely. Sorry. :(

I'm of the opinion that a logo should give the full name of your business and/or give a very clear indication of what exactly you do (unless you're eBay, in which case everyone already knows what you do). Your logo does none of these things and if I didn't know your username here on WDF then I'd have no idea what the logo was for. Restaurant? Blog? Web design?

 

So aside from the technical/Photoshop aspects of it, I'd consider revisiting the concept entirely. Sorry. :(

 

Would'nt be mega hard to do either. Just a simple "Web Design" or "Web Designer " underneath the main BWD letters, and would your laughing.

Extend the scale of the gradient, and add a stroke or a black outer glow, on a low opacity, just to make it pop out.
I'm of the opinion that a logo should give the full name of your business and/or give a very clear indication of what exactly you do (unless you're eBay, in which case everyone already knows what you do).

I agree. Also, I personally dislike the balance of the text.

mess with some typeography.if i was infront of PS now id show you an example :)

  • Author

Ok thanks Well I came up with this but when I save It as a gif and put it into dreamweaver its fuzzy and pixelated? And I have the background as transparent. Why does it do that?

 

 

post-1863-1189379043_thumb.gif

  • 1 month later...

I would say you have to work out and make something with the BWD and under the logo the real text witch its "Boyles Web Design"

 

You can take it but its only an exemple and i would prefer you try to make your own one.

 

bwdlogovs0.png

Ok thanks Well I came up with this but when I save It as a gif and put it into dreamweaver its fuzzy and pixelated? And I have the background as transparent. Why does it do that?

post-1863-1189379043_thumb.gif

 

Well you screwed setting while saving it, you should go back and resave it, if you need the background to be transarent i would say, save it in png-24(File/Save For Web...) then there's a drop down menu, witch is set by default to gif change it to png-24 and save it where you want with the name you want. Remember that I.E. haven't developed the software to use transparent png image background so here's a javascript code to do it, you'll need to include it to the or those page using those image.

 

Also keep the .js like it is here with the url as they made the script(pngfix.js). Thx.

 

/*

Correctly handle PNG transparency in Win IE 5.5 & 6.
http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.

Use in <HEAD> with DEFER keyword wrapped in conditional comments:
<!--[if lt IE 7]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->

*/

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

if ((version >= 5.5) && (document.body.filters)) 
{
  for(var i=0; i<document.images.length; i++)
  {
  var img = document.images[i]
  var imgName = img.src.toUpperCase()
  if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
  {
	 var imgID = (img.id) ? "id='" + img.id + "' " : ""
	 var imgClass = (img.className) ? "class='" + img.className + "' " : ""
	 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
	 var imgStyle = "display:inline-block;" + img.style.cssText 
	 if (img.align == "left") imgStyle = "float:left;" + imgStyle
	 if (img.align == "right") imgStyle = "float:right;" + imgStyle
	 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
	 var strNewHTML = "<span " + imgID + imgClass + imgTitle
	 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
	 + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
	 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
	 img.outerHTML = strNewHTML
	 i = i-1
  }
  }
}

 

Enjoy!

Well you screwed setting while saving it, you should go back and resave it, if you need the background to be transarent i would say, save it in png-24(File/Save For Web...) then there's a drop down menu, witch is set by default to gif change it to png-24 and save it where you want with the name you want. Remember that I.E. haven't developed the software to use transparent png image background so here's a javascript code to do it, you'll need to include it to the or those page using those image.

 

Also keep the .js like it is here with the url as they made the script(pngfix.js). Thx.

 

/*

Correctly handle PNG transparency in Win IE 5.5 & 6.
http://homepage.ntlworld.com/bobosola. Updated 18-Jan-2006.

Use in <HEAD> with DEFER keyword wrapped in conditional comments:
<!--[if lt IE 7]>
<script defer type="text/javascript" src="pngfix.js"></script>
<![endif]-->

*/

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

if ((version >= 5.5) && (document.body.filters)) 
{
  for(var i=0; i<document.images.length; i++)
  {
  var img = document.images[i]
  var imgName = img.src.toUpperCase()
  if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
  {
	 var imgID = (img.id) ? "id='" + img.id + "' " : ""
	 var imgClass = (img.className) ? "class='" + img.className + "' " : ""
	 var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
	 var imgStyle = "display:inline-block;" + img.style.cssText 
	 if (img.align == "left") imgStyle = "float:left;" + imgStyle
	 if (img.align == "right") imgStyle = "float:right;" + imgStyle
	 if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
	 var strNewHTML = "<span " + imgID + imgClass + imgTitle
	 + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
	 + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
	 + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
	 img.outerHTML = strNewHTML
	 i = i-1
  }
  }
}

 

Enjoy!

or just use the HTC hack and stick this in the header

<!--[if lt IE 7]>
<style type="text/css">
.dock img { behavior: url(iepngfix.htc) }
</style>
<![endif]-->

or use gifs,

 

do i know you from anywheres kenv?

do i know you from anywheres kenv?

 

deviantART

You're one of my lovely watchers :D

Create an account or sign in to comment

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.