- Posts: 50
- Thank you received: 1
Article length
-
ikkezelluf
Inactive member - Topic Author
- Member
Less
More
13 years 2 months ago - 13 years 2 months ago #12873
by ikkezelluf
Article length was created by ikkezelluf
I made a custom style and it looks fine but there is 1 problem. The site don't show the whole article.
I made a custum style and changed the hight in the flashes menu option and i changed te pictures.
See for yourself: www.wimhompes.nl and the image below.
Can you tell me wat the problem is….
Grtz,
Wim
I made a custum style and changed the hight in the flashes menu option and i changed te pictures.
See for yourself: www.wimhompes.nl and the image below.
Can you tell me wat the problem is….
Grtz,
Wim
Last edit: 13 years 2 months ago by ikkezelluf.
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6769
- Thank you received: 719
13 years 1 month ago #12874
by milos
Replied by milos on topic Re: Article length
What values you have for Height (Home Page) and Height (Interior Pages) in template parameters?
Please Log in to join the conversation.
-
ikkezelluf
Inactive member - Topic Author
- Member
Less
More
- Posts: 50
- Thank you received: 1
13 years 1 month ago #12875
by ikkezelluf
Replied by ikkezelluf on topic Re: Article length
Both 349….
Please Log in to join the conversation.
-
milos
Support Staff - Moderator
Less
More
- Posts: 6769
- Thank you received: 719
13 years 1 month ago #12876
by milos
Replied by milos on topic Re: Article length
It's error in template, to fix it please edit file /templates/hot_flashes/css/template_css.css in a plain text editor (such as Notepad) and change this part:
to
We will upload the fixed version soon.
Code:
<?php
$mnuFlshesTopMovement = $mnuFlshesHeight - $mnuFlshesHeightInner;
$mnuFlshesContentAreaNegativeMargin = $mnuFlshesTopMovement - 30;
?>
.interior_page {
top:-<?php echo $mnuFlshesTopMovement; ?>px;
}
.content_wrap, .content_wrap_noleft, .content_wrap_noright, .content_wrap_noleft_noright, .column_left, .column_right {
margin-bottom:-<?php echo $mnuFlshesContentAreaNegativeMargin; ?>px;
}
to
Code:
<?php
$mnuFlshesTopMovement = $mnuFlshesHeight - $mnuFlshesHeightInner;
$mnuFlshesContentAreaNegativeMargin = $mnuFlshesTopMovement + 30;
?>
.interior_page {
top:-<?php echo $mnuFlshesContentAreaNegativeMargin; ?>px;
}
.content_wrap, .content_wrap_noleft, .content_wrap_noright, .content_wrap_noleft_noright, .column_left, .column_right {
margin-bottom:-<?php echo $mnuFlshesTopMovement; ?>px;
}
We will upload the fixed version soon.
The following user(s) said Thank You: ikkezelluf
Please Log in to join the conversation.
-
ikkezelluf
Inactive member - Topic Author
- Member
Less
More
- Posts: 50
- Thank you received: 1
13 years 1 month ago #12877
by ikkezelluf
Replied by ikkezelluf on topic Re: Article length
Works, only the code is in template_css.php in stead of template_css.css.
Please Log in to join the conversation.
Time to create page: 0.195 seconds