Hello,
Could you outline steps to recreate frontpage's main image (sliders) on other pages.
There are multiple ideas throughout Forums with no clear solutions.
teitbite wrote:Hi
As a first step please duplicate the module and publish in a new page. Second step is to add a page class suffix "nobg" using template configuration panel.
#gkHeader.nobg {
background: url("../images/header_bg.jpg") no-repeat scroll center top transparent;
min-height: 760px;
}
#gkHeader.page-120 {
background: url("../images/header_bg.jpg") no-repeat scroll center top transparent;
min-height: 760px;
}
teitbite wrote:Hi
If You want a different image for different page You need to create different module suffixes. For example " page-120" than the code to load an image for this particular module will be:
- Code: Select all
#gkHeader.page-120 {
background: url("../images/header_bg.jpg") no-repeat scroll center top transparent;
min-height: 760px;
}
Pearson wrote:I recently asked for the same thing and it was answered http://www.gavick.com/forums/startup-jo ... 21713.html
teitbite wrote:Hi
Dziudek presented one of the possible solutions. I'm more of a CSS fan, so will try and make it differently.
@Poppie please show me an exact page where You have this module. Ans send me an access to Your joomla panel.
teitbite wrote:Hi
Dziudek presented one of the possible solutions. I'm more of a CSS fan, so will try and make it differently.
@Poppie please show me an exact page where You have this module. Ans send me an access to Your joomla panel.
.p606 #gkHeader {
background: url("../images/header_bg2.jpg") no-repeat scroll center top transparent;
min-height: 760px;
}
.gkIsWrapper-gk_startup .gkIsText.active {
left: auto;
margin: 0;
right: 0;
text-align: right;
top: 429px;
}
teitbite wrote:Hi
All depends where do You want to move it, but the code is there already to position it. Please just try to play with values:
- Code: Select all
.gkIsWrapper-gk_startup .gkIsText.active {
left: auto;
margin: 0;
right: 0;
text-align: right;
top: 429px;
}
.some_module_class_suffix .gkIsWrapper-gk_startup .gkIsText.active {
left: auto;
margin: 0;
right: 0;
text-align: right;
top: 429px;
}
teitbite wrote:Hi
You should keep all css changes in override.css than when template updat is released You will not use Your changes if all will be in one file.
If You want to separate this change by module simply add a module class suffix and use it with this code:
- Code: Select all
.some_module_class_suffix .gkIsWrapper-gk_startup .gkIsText.active {
left: auto;
margin: 0;
right: 0;
text-align: right;
top: 429px;
}
.p606 .gkIsWrapper-gk_startup .gkIsText.active {
left: auto;
margin: 0;
right: 0;
text-align: right;
top: 100px;
}