Welcome to Linux Forums!

With a comprehensive Linux Forum, information on various types of Linux software and many Linux Reviews articles, we have all the knowledge you need a click away, or accessible via our knowledgeable members.

Linux Forum ArticlesLinux ForumsLinux Forum DownloadsLinux Hosts
Home|Register|FAQ|Member List|Calendar|Unanswered Posts|Forum Rules|Today's Posts|Advanced Search|
SEARCH FOR IN
Go Back   Linux Forums > GNU Linux Zone > Art & Imaging in Linux
Reload this Page GIMP Help?
Linux Forums
Linux Forums
Welcome To The Linux Forums!
Welcome to Linux Forums. We pride ourselves in being one of the largest Linux communities on the web, we encourage you to REGISTER on our forums and participate in the community. There are over 150,000 members ready to answer your questions. JOINING US today will allow you to make new posts, get support, send messages to other members and submit downloads to our downloads directory and many other great features!

Art & Imaging in Linux Stuff made with The GIMP and/or others

Reply
 
Thread Tools Display Modes
Old 09-19-2006   #1 (permalink)
Construct
Just Joined!
 
Join Date: Jul 2004
Posts: 53
Send a message via AIM to Construct
GIMP Help?

I've been put in charge of our companies website. And I need some help touching up an image for use on this new site. The image has been in use at our company for awhile now, on letterhead and anything else you can imagine. I am having a hard time touching it up and was wondering if anyone could give me some suggestions.


Now that I preview this it looks okay on a white background, but if you go to www.phoenixbehavioralhealth.com you'll see why it's giving me issues. I may just have to shoot for a different color scheme on the website.

Also if anyone has some suggestions on how to get my page to display correctly in Firefox (meaning no broken borders near the bottom of the screen), that would also be appreciated.
Thanks in advance,
Nathan
__________________
-Construct
Sys. Specs.:
1gig RAM, 200gig SATA 7200rpm HD, 19" WS Flatpanel Monitor, AMD Athlon 3200
Slackware Linux 10.1 kernel 2.6.11
Construct is offline   Reply With Quote
Old 09-19-2006   #2 (permalink)
techieMoe
Super Moderator
 
techieMoe's Avatar
 
Join Date: Aug 2004
Location: Texas
Posts: 8,578
Quote:
Originally Posted by Construct
Also if anyone has some suggestions on how to get my page to display correctly in Firefox (meaning no broken borders near the bottom of the screen), that would also be appreciated.
Thanks in advance,
Nathan
My best advice for this is to run your page through the W3C standards validator, here:

http://validator.w3.org/

If you can run it through there and get no warnings, that means your code is standard and it should display the same on any standards-compliant browser. I ran the link you gave me through it and it came up with several suggestions. The most prominent ones were your <div class> tags, which aren't standard HTML/CSS apparently.
__________________
Registered Linux user #270181
TechieMoe's Tech Rants
techieMoe is offline   Reply With Quote
Old 09-19-2006   #3 (permalink)
Construct
Just Joined!
 
Join Date: Jul 2004
Posts: 53
Send a message via AIM to Construct
Seriously? Wow. How then do all these webpages use divs instead of tables?
__________________
-Construct
Sys. Specs.:
1gig RAM, 200gig SATA 7200rpm HD, 19" WS Flatpanel Monitor, AMD Athlon 3200
Slackware Linux 10.1 kernel 2.6.11
Construct is offline   Reply With Quote
Old 09-19-2006   #4 (permalink)
techieMoe
Super Moderator
 
techieMoe's Avatar
 
Join Date: Aug 2004
Location: Texas
Posts: 8,578
Quote:
Originally Posted by Construct
Seriously? Wow. How then do all these webpages use divs instead of tables?
Your problem isn't with using <div> tags. If you read the message you get from the W3C validator page, the issue is with the parameters you're using inside your <div> tags. According to the W3C standards, the class parameter is not valid.
__________________
Registered Linux user #270181
TechieMoe's Tech Rants
techieMoe is offline   Reply With Quote
Old 09-19-2006   #5 (permalink)
Construct
Just Joined!
 
Join Date: Jul 2004
Posts: 53
Send a message via AIM to Construct
I guess I just don't understand how I can specify the behavior of multiple divs without using the class attribute.
__________________
-Construct
Sys. Specs.:
1gig RAM, 200gig SATA 7200rpm HD, 19" WS Flatpanel Monitor, AMD Athlon 3200
Slackware Linux 10.1 kernel 2.6.11
Construct is offline   Reply With Quote
Old 09-19-2006   #6 (permalink)
techieMoe
Super Moderator
 
techieMoe's Avatar
 
Join Date: Aug 2004
Location: Texas
Posts: 8,578
Quote:
Originally Posted by Construct
I guess I just don't understand how I can specify the behavior of multiple divs without using the class attribute.
Here is a list from the W3C site of the valid parameters that can go in a DIV tag:

http://www.w3.org/TR/html4/struct/global.html#h-7.5.4
__________________
Registered Linux user #270181
TechieMoe's Tech Rants
techieMoe is offline   Reply With Quote
Old 09-19-2006   #7 (permalink)
Construct
Just Joined!
 
Join Date: Jul 2004
Posts: 53
Send a message via AIM to Construct
I changed the doc type to html version 4.0 and have eliminated some of the errors. Thanks for the link I'll be sure to look into that.
__________________
-Construct
Sys. Specs.:
1gig RAM, 200gig SATA 7200rpm HD, 19" WS Flatpanel Monitor, AMD Athlon 3200
Slackware Linux 10.1 kernel 2.6.11
Construct is offline   Reply With Quote
Old 09-19-2006   #8 (permalink)
Construct
Just Joined!
 
Join Date: Jul 2004
Posts: 53
Send a message via AIM to Construct
From your link.
Quote:
class = cdata-list [CS]
This attribute assigns a class name or set of class names to an element. Any number of elements may be assigned the same class name or names. Multiple class names must be separated by white space characters.
Quote:
<!-- Example of data from the client database: -->
<!-- Name: Stephane Boyera, Tel: (212) 555-1212, Email: sb@foo.org -->

<DIV id="client-boyera" class="client"> << edited
<P><SPAN class="client-title">Client information:</SPAN>
<TABLE class="client-data">
<TR><TH>Last name:<TD>Boyera</TR>
<TR><TH>First name:<TD>Stephane</TR>
<TR><TH>Tel:<TD>(212) 555-1212</TR>
<TR><TH>Email:<TD>sb@foo.org</TR>
</TABLE>
</DIV>
Now I'm getting two different stories. One telling me no DIVs do not have a class attribute and one saying yes they do.

Could someone please explain to me what's going on because I'm just more confused now than ever. :\
__________________
-Construct
Sys. Specs.:
1gig RAM, 200gig SATA 7200rpm HD, 19" WS Flatpanel Monitor, AMD Athlon 3200
Slackware Linux 10.1 kernel 2.6.11
Construct is offline   Reply With Quote
Old 09-19-2006   #9 (permalink)
Construct
Just Joined!
 
Join Date: Jul 2004
Posts: 53
Send a message via AIM to Construct
Solved the problem by changing the document type to html 4.01 strict

Thank you very much for the link I found everything I needed and now my page is fully compliant Looks pretty good in both IE and Firefox! Thanks man I owe yah one


Oh yeah but talk about a thread going off topic

I would still appreciate anyones help with my image issues!
__________________
-Construct
Sys. Specs.:
1gig RAM, 200gig SATA 7200rpm HD, 19" WS Flatpanel Monitor, AMD Athlon 3200
Slackware Linux 10.1 kernel 2.6.11
Construct is offline   Reply With Quote
Old 09-21-2006   #10 (permalink)
Juan Pablo
Linux Guru
 
Juan Pablo's Avatar
 
Join Date: Mar 2006
Location: /home/south_america/ecuador/quito
Posts: 2,059
Send a message via MSN to Juan Pablo
Give me a moment I'll try to add some nice gradients and thingies for your web and post here
__________________
Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940

Don't PM me with questions, instead post in the forums
Juan Pablo is offline   Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT. The time now is 01:58 AM.




© 2000 - 2008 - All Rights Reserved - Property of  MAS Media

Content Relevant URLs by vBSEO 3.0.0