Remove not used Areas in Template

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Wed May 07, 2014 6:17 am
Reply with quote
Report this post
Hi there,

wanna make some parts of template not visible ... its the part where are the background pictures

dark_bottom_bg.jpg and
bottom_bg.jpg

site is http://joergschnitzer.de/web/

And i want to remove everyting under the "Dienstleistungs-Übersicht"

Regards
Michael
User avatar
Fresh Boarder

teitbite
Wed May 07, 2014 9:39 am
Reply with quote
Report this post
Hi

Add this to css:

Code: Select all
#gkDarkBottom,
#gkBottomSection,
#gkMainbody .gkSectionNav {
display: none;
}

#gkPageContent {
padding: 0;
}
User avatar
Moderator

GK User
Wed May 07, 2014 10:25 am
Reply with quote
Report this post
hi.. thanks for message ...

what css ?
style.css ?
override ?

or what ?
:)
User avatar
Fresh Boarder

teitbite
Thu May 08, 2014 7:44 pm
Reply with quote
Report this post
Hi

Any css modifications should be place to override.css to avoid losing changes during template update. Just remember that override needs to be enabled in template settings.
User avatar
Moderator

GK User
Sat May 10, 2014 8:37 am
Reply with quote
Report this post
Hi there :)

thanks for reply .. i enter the code in override.css .. that works .. but now i have lot of white unuesed page !
what else i have to enter in css to make it not visible !?
User avatar
Fresh Boarder

teitbite
Tue May 13, 2014 9:44 am
Reply with quote
Report this post
Hi

Here are some more lines of code than:

Code: Select all
.frontpage.dark-bottom #gkPageContent {
    padding: 0;
}

.frontpage.dark-bottom .gkDarkBottom + #gkBottom1 {
    margin-top: 0;
    padding: 0 0 20px;
}
User avatar
Moderator

GK User
Sun May 18, 2014 7:44 am
Reply with quote
Report this post
Hi ...
have that code in override.css

but do not work !

#gkDarkBottom,
#gkBottomSection,
#gkMainbody .gkSectionNav {
display: none;
}

#gkPageContent {
padding: 0;
.frontpage.dark-bottom #gkPageContent {
padding: 0;
}

.frontpage.dark-bottom .gkDarkBottom + #gkBottom1 {
margin-top: 0;
padding: 0 0 20px;
}
whats wrong !? cause i allways see the white part under "Dienstleistungs-Überblick"
User avatar
Fresh Boarder

teitbite
Tue May 20, 2014 11:05 am
Reply with quote
Report this post
Hi

White space is from a padding:

Code: Select all
.frontpage.dark-bottom #gkPageContent {
    padding: 0;
}


I written this code before, but looks like there is no closing } in the class above which makes this class unusable.
User avatar
Moderator

GK User
Tue May 20, 2014 11:17 am
Reply with quote
Report this post
so it means.. that is only code i need !?
please tell me exactly :)

regards
User avatar
Fresh Boarder

teitbite
Thu May 22, 2014 9:37 pm
Reply with quote
Report this post
Hi

Here is how override.css should looks like:

Code: Select all
#gkDarkBottom,
#gkBottomSection,
#gkMainbody .gkSectionNav {
display: none;
}

#gkPageContent {
padding: 0;
}

.frontpage.dark-bottom #gkPageContent {
padding: 0;
}

.frontpage.dark-bottom .gkDarkBottom + #gkBottom1 {
margin-top: 0;
padding: 0 0 20px;
}
User avatar
Moderator


cron