- Posts: 3
- Thank you received: 0
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Please read
Before you ask for help with template issues ...
Question Width issue, div out of template
16 years 7 months ago - 16 years 7 months ago #30129
by brod
Width issue, div out of template was created by brod
Hi!..
Well, an image worth a thousand words.. that's my issue:
As you can see, some Div's are out of the template.
It happens after i define the template width as 980px
on the /templates/ja_purity/css/template.css file.
If i erase the width definition kunena works fine.. also if i define in %.
Can i leave the Width as 980px without the bug ?
Thanks..
*edit* my forum it's here: caolho.com
ps.: sorry, my english is not so good.. i'm from Brazil..
Well, an image worth a thousand words.. that's my issue:
As you can see, some Div's are out of the template.
It happens after i define the template width as 980px
on the /templates/ja_purity/css/template.css file.
Code:
/* COMMON STYLE
--------------------------------------------------------- */
html, body, form, fieldset {
margin: 0 auto 0 auto;
padding: 0 auto 0 auto;
width: 980px;
}
If i erase the width definition kunena works fine.. also if i define in %.
Can i leave the Width as 980px without the bug ?
Thanks..
*edit* my forum it's here: caolho.com
ps.: sorry, my english is not so good.. i'm from Brazil..
Last edit: 16 years 7 months ago by brod. Reason: sorry i forgot to post my page's url
Please Log in or Create an account to join the conversation.
16 years 7 months ago #30134
by @quila
Replied by @quila on topic Re:Width issue, div out of template
Hello brod, welcome to forum
with default_ex template you have the same issue??
Regards
with default_ex template you have the same issue??
Regards
Please Log in or Create an account to join the conversation.
16 years 7 months ago #30143
by brod
Replied by brod on topic Re:Width issue, div out of template
Yeap, with all the templates i have the same issue.
Please Log in or Create an account to join the conversation.
16 years 7 months ago #30180
by brod
Replied by brod on topic Re:Width issue, div out of template (SOLVED)
I solved that..
I was doing this:
but the correctly is this:
Thanks guys.. see ya!
I was doing this:
Code:
/* COMMON STYLE
--------------------------------------------------------- */
html, body, form, fieldset {
margin: 0 auto 0 auto;
padding: 0 auto 0 auto;
width: 980px;
}
body {
color: #000000;
background: #000000 url("../images/fundo.jpg") no-repeat top center;
font-family: Arial, Helvetica, sans-serif;
line-height: 150%;
}
but the correctly is this:
Code:
/* COMMON STYLE
--------------------------------------------------------- */
html, body, form, fieldset {
margin: 0 auto 0 auto;
padding: 0 auto 0 auto;
}
body {
color: #000000;
background: #000000 url("../images/fundo.jpg") no-repeat top center;
font-family: Arial, Helvetica, sans-serif;
line-height: 150%;
width: 980px;
}
Thanks guys.. see ya!
Please Log in or Create an account to join the conversation.
Time to create page: 0.246 seconds