Recent Topics

Members
Stats
  • Total Posts: 10,749
  • Total Topics: 1,374
  • Online today: 356
  • Online ever: 879
  • (Jan 21, 20, 05:49:15 PM)
Users Online
Users: 0
Guests: 307
Total: 307

Customizing Blackjack

Started by GlMlK, Oct 20, 11, 10:16:00 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

GlMlK

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

Crip

Hi!

..i can't myself -- i no longer have the PSD files for it..your welcome to try yourself..
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

GlMlK

#2
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

Crip

Padding or margin's are there to change , i will look at mine and see how much & where.
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.

Crip

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:
I have become comfortably numb!


No PM's for Support unless invited! 

I remember my mother's prayers and they have always followed me.
   - Abraham Lincoln -
TOTM Winner.