MemHT Portal is a Free PHP CMS and Blog
It permit the creation and the management online of websites with few and easy steps.
It's completelly customizable, expandable and suitable for all needs.
Moderators: Moderators
Page 1/2 1 2 >
Forum RSS feedReply
Longest codes problem pfff :S
AuthorText
spider58
Junior Member
Avatar

Posts: 30
Contributes: 33

Gender: _NEUTRAL_
Online: No
Date: 16/08/2008 11:02
Longest codes problem pfff :S
#post11173
hello boys. sorry for bad english.

my english is bad u can look problem at here

Bad seems:
http://www.kodlayalim.com/articles_184_Kayan-Menu.html

or

http://www.kodlayalim.com/articles_182_Sagda-kayan-banner-kodu.html

longest codes are overflow from right. and pushing to my menus to right. Smile

i want "my theme must not expand from right"
Edited: 16/08/2008 12:24
Delete Edit Quote
 
spider58
Junior Member
Avatar

Posts: 30
Contributes: 33

Gender: _NEUTRAL_
Online: No
Date: 16/08/2008 12:24
Re: Longest codes problem pfff :S
#post11175
no help Smile
Delete Edit Quote
 
adminik
Moderator
Polski Support

Avatar

Posts: 189
Contributes: 179

Gender: _MALE_
Online: No

Languages: Polski & English
Version: Last xD
Country: Polska
Date: 16/08/2008 13:48
Re: Longest codes problem pfff :S
#post11176
Add code to:
code

[code]
 

Image
quote
Czy Z Legala Czy Z Podziemia Ulica Się Nie Zmienia! - RPK

quote
Poland is my country and the house. Do not reveal the and do not go from here ...
Delete Edit Quote
 
paulo89
Moderator
Developer

Avatar

Posts: 1300
Contributes: 537

Gender: _MALE_
Online: Yes

Version: 3.8.1
Country: Portugal
Languages: Portuguese, Portuguese and little english ^^
Date: 16/08/2008 13:58
Re: Longest codes problem pfff :S
#post11177
Holidays, you do not know what is?
You do not see the message at the top of the forum?
you just waited 1h22m, if you do not know, we also have life beyond the memht.

Anyway open u style.css and find:
code

 .tpl_main {
        background:url(images/tpl_main.gif) repeat-y;
}
 


Add width limit (600px is only a example):
code

.tpl_main {
        background:url(images/tpl_main.gif) repeat-y;
        width:600px;
}
 




Delete Edit Quote
 
spider58
Junior Member
Avatar

Posts: 30
Contributes: 33

Gender: _NEUTRAL_
Online: No
Date: 16/08/2008 16:18
Re: Longest codes problem pfff :S
#post11182
quote
paulo89:
Holidays, you do not know what is?
You do not see the message at the top of the forum?
you just waited 1h22m, if you do not know, we also have life beyond the memht.

Anyway open u style.css and find:
code

 .tpl_main {
        background:url(images/tpl_main.gif) repeat-y;
}
 


Add width limit (600px is only a example):
code

.tpl_main {
        background:url(images/tpl_main.gif) repeat-y;
        width:600px;
}
 






don't get angry. sorry and thx. but problem is not solved. my main page is corrupting when i added with code in my style css.
Edited: 16/08/2008 16:24
Delete Edit Quote
 
spider58
Junior Member
Avatar

Posts: 30
Contributes: 33

Gender: _NEUTRAL_
Online: No
Date: 16/08/2008 16:30
Re: Longest codes problem pfff :S
#post11183
quote
adminik:
Add code to:
code

[code]
 



this is solving my problem. but how can add "code button" to my editor toolbar. Cos writing is "[code][/code]" hard always.
Delete Edit Quote
 
freaky
Crazy Member
Avatar

Posts: 635
Contributes: 487

Gender: _MALE_
Online: No
Date: 16/08/2008 16:41
Re: Longest codes problem pfff :S
#post11184
in the FckEditor this functionis already added!
"Don't Talk about It, Be about it! PEACE" - Mos Def

vote -- here
View Image resized (Original file: 468x60)
Thumb
Delete Edit Quote
 
spider58
Junior Member
Avatar

Posts: 30
Contributes: 33

Gender: _NEUTRAL_
Online: No
Date: 16/08/2008 18:25
Re: Longest codes problem pfff :S
#post11186
View Image resized (Original file: 613x281)
Thumb


this is my editor. Where is this button Smile i can't find it
Edited: 16/08/2008 18:26
Delete Edit Quote
 
freaky
Crazy Member
Avatar

Posts: 635
Contributes: 487

Gender: _MALE_
Online: No
Date: 16/08/2008 18:56
Re: Longest codes problem pfff :S
#post11188
aa ok In the admin Panel sorry i thought you talked about the Forum ect.

euhm I don't have a big knowlegd with the FCKeditor i would have to have a look but i have no time today maybe monday sry!

Peace Freakyyy
"Don't Talk about It, Be about it! PEACE" - Mos Def

vote -- here
View Image resized (Original file: 468x60)
Thumb
Delete Edit Quote
 
kierownik
Developer
Avatar

Posts: 200
Contributes: 79

Gender: _MALE_
Online: No

Version: 4.0.1
Country: netherlands
Languages: dutch, english
Date: 16/08/2008 19:36
Re: Longest codes problem pfff :S
#post11191
you can add Style to your editor, then it inserts <code></code>.

open inc/fckeditor/fckeditor.js.
around line 96:
code
FCKConfig.ToolbarSets["fulladmin"] = [
        ['Source','Preview','-','NewPage','Templates','-','SelectAll','RemoveFormat','-','Table','-','Undo','Redo','-','Find','Replace'],'/',
        ['Bold','Italic','Underline','StrikeThrough','SpecialChar','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','-','Cut','Copy','Paste','-','OrderedList','UnorderedList','-','Link','Unlink','Anchor'],'/',
        ['Image','Flash','-','FontName','FontSize','TextColor','BGColor']
] ;


change to:
code
FCKConfig.ToolbarSets["fulladmin"] = [
        ['Source','Preview','-','NewPage','Templates','-','SelectAll','RemoveFormat','-','Table','-','Undo','Redo','-','Find','Replace'],'/',
        ['Bold','Italic','Underline','StrikeThrough','SpecialChar','-','JustifyLeft','JustifyCenter','JustifyRight','JustifyFull','-','Cut','Copy','Paste','-','OrderedList','UnorderedList','-','Link','Unlink','Anchor'],'/',
        ['Image','Flash','-','Style','FontName','FontSize','TextColor','BGColor']
] ;
kierownik's extensions for FluxBB 1.3 Beta
Goto: http://kierownik.nl
Delete Edit Quote
 
Reply
Page 1/2 1 2 >
Tags Cloud
Advertising
News Archive
Language
Help MemHT Portal
Navigator
Users Block
Hi Guest
IP: 38.103.63.59

Username
Password
New files
MemHT Wiki
Friends
MemHT Portal is a free software released under the GNU/GPL License by Miltenovik Manojlo