- Posts: 5
- Thank you received: 0
Support for SermonSpeaker 3.x is canceled as it is for Joomla 1.5. I will gladly assist you with minor issues but I will not fix any bugs anymore in this releases.
The fix is to upgrade to SermonSpeaker 4.x, which is better anyway.
The fix is to upgrade to SermonSpeaker 4.x, which is better anyway.
Main display is distorted
- Thomas Maerz
- Topic Author
- Offline
- New Member
Less
More
04 Oct 2011 16:30 #1084
by Thomas Maerz
Main display is distorted was created by Thomas Maerz
I have a sermonspeaker installation running the latest version of 3.x on a joomla 1.5.23 instance.
It looked fine until the user added more than one sermon, now the display is garbled looking. See Attachment
Any idea what could be causing this?
It looked fine until the user added more than one sermon, now the display is garbled looking. See Attachment
Any idea what could be causing this?
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
05 Oct 2011 09:49 #1088
by Thomas Hunziker
Replied by Thomas Hunziker on topic Re: Main display is distorted
You probably forgot the attachement here
Can you give me a link to the page? Then I can have a closer look.
Usually it's the template to blame, can you check with another template (like beez) to see if it's still the same?
Can you give me a link to the page? Then I can have a closer look.
Usually it's the template to blame, can you check with another template (like beez) to see if it's still the same?
Please Log in or Create an account to join the conversation.
- Thomas Maerz
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
- Thank you received: 0
05 Oct 2011 15:19 #1091
by Thomas Maerz
Replied by Thomas Maerz on topic Re: Main display is distorted
Please Log in or Create an account to join the conversation.
- Andrei Chernyshev
- Offline
- Translator
05 Oct 2011 15:21 - 05 Oct 2011 15:22 #1092
by Andrei Chernyshev
Replied by Andrei Chernyshev on topic Re: Main display is distorted
its your template you need to change the following lines.
try changing to this.
Code:
.row1 {
background: url(../images/row1_bg.png) 0% 0 no-repeat;
height: 220px;
try changing to this.
Code:
.row1 {
background: none;
height: auto;
Last edit: 05 Oct 2011 15:22 by Andrei Chernyshev.
The following user(s) said Thank You: Thomas Maerz
Please Log in or Create an account to join the conversation.
- Thomas Maerz
- Topic Author
- Offline
- New Member
Less
More
- Posts: 5
- Thank you received: 0
10 Oct 2011 19:11 - 10 Oct 2011 19:12 #1096
by Thomas Maerz
Replied by Thomas Maerz on topic Re: Main display is distorted
This worked, but it messed up my front page. This is the actual code that was replaced in the template, and I'm sure that's the issue:
Code:
.row1 {
background:url(../images/row1_bg.png) 0% 0 no-repeat;
width:929px;
height:220px;
margin:0 auto;
padding:30px 0 20px 30px;
color:#8e8e8e;
margin-bottom:31px
Last edit: 10 Oct 2011 19:12 by Thomas Maerz.
Please Log in or Create an account to join the conversation.
- Thomas Hunziker
- Offline
- Administrator
10 Oct 2011 23:42 #1097
by Thomas Hunziker
Replied by Thomas Hunziker on topic Re: Main display is distorted
The problem is that your template makes an override for the frontpage which uses the same CSS class (row1) I use in SermonSpeaker.
Fortunately CSS is quite awesome and lets us fix that issue
We can define a formatting for a table row with that class which will override the global class definition:
This should fix the issue for tables, but not break your frontpage.
Fortunately CSS is quite awesome and lets us fix that issue
We can define a formatting for a table row with that class which will override the global class definition:
Code:
tr .row1 {
background: none;
height: auto;
}
Please Log in or Create an account to join the conversation.
Time to create page: 0.116 seconds