Border around Content-Modul

GK User
Wed Feb 08, 2012 12:46 pm
Hello Team,

Hope anybody can help me. I want to make a color-border around the content in musicity. I my example-image you can see what I mean :silly:

Stefan-Heim.jpg

Here is my site: http://www.stefan-heim.com

Thanks for help.
Melanie
User avatar
Junior Boarder

GK User
Wed Feb 08, 2012 4:52 pm
Hi.
Please open the template.css file and find the following line:
Code: Select all
 #gkMainbodyWrap {
background: #3F3F3F;
color: white;
padding: 16px;
}

There you can add your border, eg:
Code: Select all
 #gkMainbodyWrap {
background: #3F3F3F;
color: white;
padding: 16px;
border-style: solid;
border-width: 5px;
border-color: blue;
}
User avatar
Platinum Boarder

GK User
Wed Feb 08, 2012 5:20 pm
Thanks you are so perfect :D

Can I ask another question? Why is it so much space between content and border...? This was also before I change the border-color. I think it is the place for Social-media, but I doesn´t need this. Can you tell me how I delete this space?

space-content.jpg


Thanks so much,
Melanie
User avatar
Junior Boarder

GK User
Wed Feb 08, 2012 5:42 pm
No problem.

To delete this space please open joomla.css file and find the following line:
Code: Select all
 #gkSocialAPI {
height: 27px;
padding: 12px 0 0;
margin: 15px 0 26px;
background: transparent url('../images/horizontal_line.png') repeat-x 0 top;
}

Then change it to:
Code: Select all
 #gkSocialAPI {
height: 27px;
padding: 12px 0 0;
margin: 15px 0 26px;
background: transparent url('../images/horizontal_line.png') repeat-x 0 top;
display: none;
}
User avatar
Platinum Boarder

GK User
Wed Feb 08, 2012 6:51 pm
GREAT it works.... !!! Thank you :P
User avatar
Junior Boarder

GK User
Wed Feb 08, 2012 6:58 pm
I'm glad I could help.
See you around...
User avatar
Platinum Boarder


cron