TheCripZone SMF Themes Site

All Things Public => Theme Support => Topic started by: GlMlK on Oct 20, 11, 10:16:00 PM

Title: Customizing Blackjack
Post by: GlMlK on Oct 20, 11, 10:16:00 PM
Trying to mod my Blackjack theme, see attached pic, I wish to remove the black horizontal strip (at point A) and want to move the bottom border up to point B. I can remove the black horizontal strip in Photoshop, no problem, but it leaves a lot of empty space at the bottom and I can't seem to figure out how to move the bottom border up.

http://i54.tinypic.com/ofn41c.png

Thanks in advance for any help.

gimik
Title: Re: Customizing Blackjack
Post by: Crip on Oct 21, 11, 07:01:43 AM
Hi!

..i can't myself -- i no longer have the PSD files for it..your welcome to try yourself..
Title: Re: Customizing Blackjack
Post by: GlMlK on Oct 21, 11, 11:25:22 PM
Quote..i can't myself -- i no longer have the PSD files for it..your welcome to try yourself..

That's the problem, I can (and have) remove the black bar at point A but I can't seem to figure out how to move the bottom border up without truncating the border. If I make the edit in Photoshop the border gets cut off and I can't seem to find the right CSS entry to change the height.

http://i56.tinypic.com/hu1xzd.png

Thanks in advance for any help.

gimik
Title: Re: Customizing Blackjack
Post by: Crip on Oct 22, 11, 06:29:01 AM
Padding or margin's are there to change , i will look at mine and see how much & where.
Title: Re: Customizing Blackjack
Post by: Crip on Oct 22, 11, 07:05:14 AM
css/index.css Find:



#content_section div.frame
{
   background: url(../images/theme/frame_repeat.png) repeat-y top right;
   display: block;
   padding: 0 20px 0 0;
}




Replace with::


#content_section div.frame
{
   background: url(../images/theme/frame_repeat.png) repeat-y top right;
   display: block;
   padding: 0 20px 20px 0;
}


You can add more padding if needed. :up: