It is currently Wed May 22, 2013 3:26 am


Latest GIMP Scripts & Plug-ins

All times are UTC - 5 hours [ DST ]




Post new topic Reply to topic  [ 175 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9 ... 18  Next
Author Message
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Sun Jul 22, 2012 4:06 pm  (#51) 
Offline
GimpChat Member

Joined: Aug 05, 2011
Posts: 527
Location: limestone,ny
Used firebug to see what my banner would look like..
ended up using a layer mask and fading the edges to make it blend-in so the edges didn't show
Image
Image
just realized :oops: i uploaded the wrong banner version screenshot (#2) should have been this one with faded edges
Image


Top
 Profile  
 

 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Mon Jul 23, 2012 3:12 pm  (#52) 
Offline
GimpChat Founder
User avatar

Joined: May 22, 2008
Posts: 2082
Location: Gimpville
Very nice banners!!

As to implementation of a rotating banner, it would be easier to simply use a script rotate a single banner but there shouldn't be an issue with rotating the background "sliver" (background2.png), as well. The current css is pretty straightforward.

Code:
#logodesc {
   background-color: #EEF4F5;
   background-image: url('./images/background2.png');
   background-repeat: repeat-x;
   background-position: center;
   padding: -0px 0px 0px 0px;
}


Another option would be to border each side of the banner with a vertical bar, framing it out, so the only thing that would need to change would be the banner itself.

_________________
Image


Top
 Profile  
 
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Mon Jul 23, 2012 4:09 pm  (#53) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2012
Posts: 582
Location: Heading to Montana
You could also take the ones you like and create multiple banner classes with the scripting all set up. Then it would be a matter of changing a div id or class to that particular banners class/id name.

Code:
#logodesc1 {
   background-color: #EEF4F5;
   background-image: url('./images/background1.png');
   background-repeat: repeat-x;
   background-position: center;
   padding: -0px 0px 0px 0px;
}

#logodesc2 {
   background-color: #EEF4F5;
   background-image: url('./images/background2.png');
   background-repeat: repeat-x;
   background-position: center;
   padding: -0px 0px 0px 0px;
}
with this or just changing the number in the div
<div id="logodesc1"></div>
<!-<div id="logodesc2"></div>-!>
OR
by uncommentting the other banners and commenting the current one out
#logodesc {<!-Banner Default-!>
   background-color: #EEF4F5;
   background-image: url('./images/background2.png');
   background-repeat: repeat-x;
   background-position: center;
   padding: -0px 0px 0px 0px;
}

<!-#logodesc {<!- Banner one-!>
   background-color: #EEF4F5;
   background-image: url('./images/background2.png');
   background-repeat: repeat-x;
   background-position: center;
   padding: -0px 0px 0px 0px;
}-!>


_________________


"In the face of adversity, there's three things: fly, freeze or fight; We're choosing to fight..."- Guy Boucher, Tampa Bay Lighting Head Coach

BE THE THUNDER!
Image


Top
 Profile  
 
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Mon Jul 23, 2012 6:08 pm  (#54) 
Offline
GimpChat Member
User avatar

Joined: May 26, 2012
Posts: 341
Location: France
GnuTux wrote:
Very nice banners!!
Another option would be to border each side of the banner with a vertical bar, framing it out, so the only thing that would need to change would be the banner itself.


But doing so, you would kill the "floating" banner in favor of the "boxed" banner. Matter of taste but, well, I just wanted to stress this as a consequence.


Top
 Profile  
 
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Mon Jul 23, 2012 7:24 pm  (#55) 
Offline
Global Moderator
User avatar

Joined: May 16, 2010
Posts: 9001
Location: "Looking for my eraser" =P
I do like the floating banner effect better myself. I don't think the boxed in effect would look as good.
As for rotating the banner, it would be easier to just use a script that grabs images from a directory and just flips a different one each day, or week.That way there is no need to change the CSS or markup code at all.As there might be a time where you just can't do it that day. Better to have it automatic i think. :)

Tux i don't think anyone has a problem with using your bg and gradient.They can add their own stuff to that.Then it will match the site colors and stay fluid. :)

http://www.phpbbstyles.com/viewtopic.php?t=5922

_________________
Image
Gimp Rocks Blog
Simply Gimp Tutorials
"Once your in the cloud, you're in the net"
____________
OK, . . . . so what's the speed of dark?


Top
 Profile  
 
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Tue Jul 24, 2012 12:00 am  (#56) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2012
Posts: 582
Location: Heading to Montana
Ya but does that include that ability to define specific dates?

_________________


"In the face of adversity, there's three things: fly, freeze or fight; We're choosing to fight..."- Guy Boucher, Tampa Bay Lighting Head Coach

BE THE THUNDER!
Image


Top
 Profile  
 
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Wed Jul 25, 2012 8:13 am  (#57) 
Offline
GimpChat Member
User avatar

Joined: Jun 24, 2010
Posts: 277
Location: Western Vic Australia
I have tried to make my original idea with a bit more "oomph" and colour. I stuck with the same theme , a Wilbur, and the two enduring brushes with the underlying colours of the forum.
I also tried to simulate depth by having the peppers and sparkle above and below different items. This will expand on both sides as both sides of the banner are exactly the same.
I found the hardest part was to include the Forum Motto "Where Imagination Meets Innovation". It is long and difficult to place without upsetting some element in the composition.
Because of the layering and with layer masks to achieve the under and above effects of peppers and sparkles, the xcf is quite large and messy. I will upload if you require it. I hope you like this version.
I had thought that we would have had more attempts at this as it is an excellent way to learn more about Gimp and design. Perhaps there are a lot more "in the making" out there!

Attachment:
masthead6.png
masthead6.png [ 271.68 KiB | Viewed 126 times ]

_________________
Image


Top
 Profile  
 

 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Wed Jul 25, 2012 8:39 am  (#58) 
Offline
Global Moderator
User avatar

Joined: Apr 07, 2010
Posts: 6960
Excellent wbool, very vibrant and a very nice composition. This gets my vote for sure.
BTW, I am a little disappointed too that we haven't received very many from other members.

_________________
Image


Top
 Profile  
 
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Wed Jul 25, 2012 12:28 pm  (#59) 
Offline
GimpChat Member
User avatar

Joined: Jan 20, 2012
Posts: 582
Location: Heading to Montana
Still working on mine, just got a job so cut me a little slack :D

_________________


"In the face of adversity, there's three things: fly, freeze or fight; We're choosing to fight..."- Guy Boucher, Tampa Bay Lighting Head Coach

BE THE THUNDER!
Image


Top
 Profile  
 
 Post subject: Re: GIMP Chat Banner Challenge
PostPosted: Wed Jul 25, 2012 12:53 pm  (#60) 
Offline
Global Moderator
User avatar

Joined: Apr 07, 2010
Posts: 6960
Congrats on the new job.

_________________
Image


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 175 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9 ... 18  Next

All times are UTC - 5 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  

* Login   * Subscribe to RSS Feed


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group