- Posts: 27
- Thank you received: 0
Display a grey header over inset?
-
internetantiquar
Inactive member - Topic Author
- Member
Less
More
12 years 2 months ago - 12 years 2 months ago #22374
by internetantiquar
Display a grey header over inset? was created by internetantiquar
Hi,
www.neue.antiquariatszeitung.de
, (how) can I display a grey header with headerline over the inset/middle part of the site, like the module-headers have?
Thks Helmer
Thks Helmer
Last edit: 12 years 2 months ago by internetantiquar.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 2 months ago #22376
by ivan.milic
Replied by ivan.milic on topic Display a grey header over inset?
In template_css.php
replicate styles for
div.moduletable h3
for
.items-row .item h2
replicate styles for
div.moduletable h3
for
.items-row .item h2
Please Log in to join the conversation.
-
internetantiquar
Inactive member - Topic Author
- Member
Less
More
- Posts: 27
- Thank you received: 0
12 years 2 months ago #22378
by internetantiquar
Replied by internetantiquar on topic Display a grey header over inset?
Hi, sorry Ivan; dind't grap your information. Found div.moduletable h3, but there is a whole bunch of code behind it. What should I replicate?
Thks Helmer
Thks Helmer
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 2 months ago #22381
by ivan.milic
Replied by ivan.milic on topic Display a grey header over inset?
add
.items-row .item h2 h3 span {
color:<?php echo $columnFirstWord; ?>;
}
.items-row .item h2 h3 {
color:<?php echo $columnHeading; ?>;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(<?php echo $modulesHeadingBgStart; ?>), to(<?php echo $modulesHeadingBgEnd; ?>));
background: -moz-linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
-pie-background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='<?php echo $modulesHeadingBgStart; ?>', endColorstr='<?php echo $modulesHeadingBgEnd; ?>');
position:relative;
}
to template_css.php, and
.items-row .item h2 h3 {
font-size:17px;
font-weight:normal;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
text-transform:uppercase;
margin:0 0 7px 0;
padding:0 0 0 25px;
line-height:35px;
}
to template_css.css
.items-row .item h2 h3 span {
color:<?php echo $columnFirstWord; ?>;
}
.items-row .item h2 h3 {
color:<?php echo $columnHeading; ?>;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(<?php echo $modulesHeadingBgStart; ?>), to(<?php echo $modulesHeadingBgEnd; ?>));
background: -moz-linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
-pie-background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='<?php echo $modulesHeadingBgStart; ?>', endColorstr='<?php echo $modulesHeadingBgEnd; ?>');
position:relative;
}
to template_css.php, and
.items-row .item h2 h3 {
font-size:17px;
font-weight:normal;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
text-transform:uppercase;
margin:0 0 7px 0;
padding:0 0 0 25px;
line-height:35px;
}
to template_css.css
Please Log in to join the conversation.
-
internetantiquar
Inactive member - Topic Author
- Member
Less
More
- Posts: 27
- Thank you received: 0
12 years 2 months ago #22428
by internetantiquar
Replied by internetantiquar on topic Display a grey header over inset?
Hi, this didn't work or I did it wrong. It had no effects on the displaying a header over the main/middel part of inset. I will try it later once again.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 2 months ago - 12 years 2 months ago #22434
by ivan.milic
Replied by ivan.milic on topic Display a grey header over inset?
my mistake , it's:
add
to template_css.php, and
to template_css.css
add
Code:
.items-row .item h2 span {
color:<?php echo $columnFirstWord; ?>;
}
.items-row .item h2 {
color:<?php echo $columnHeading; ?>;
background: -webkit-gradient(linear, 0 0, 0 bottom, from(<?php echo $modulesHeadingBgStart; ?>), to(<?php echo $modulesHeadingBgEnd; ?>));
background: -moz-linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
-pie-background: linear-gradient(<?php echo $modulesHeadingBgStart; ?>, <?php echo $modulesHeadingBgEnd; ?>);
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='<?php echo $modulesHeadingBgStart; ?>', endColorstr='<?php echo $modulesHeadingBgEnd; ?>');
position:relative;
}
to template_css.php, and
Code:
.items-row .item h2 {
font-size:17px;
font-weight:normal;
font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
text-transform:uppercase;
margin:0 0 7px 0;
padding:0 0 0 25px;
line-height:35px;
}
Last edit: 12 years 2 months ago by ivan.milic.
Please Log in to join the conversation.
Time to create page: 0.171 seconds