Antwort
 
LinkBack Themen-Optionen Thema durchsuchen Thema bewerten Ansicht
  #1  
Alt 13.01.06, 12:28
Forum Zuschauer
 
Registriert seit: 11.01.06
Alter: 35
Beiträge: 7
Seite wird nicht richtig angezeigt

Hallo zusammen,

kurz zusammengefasst um was es geht, ich habe ein Server mit Version 3.6.0RC am laufen und bin seit einiger Zeit daran ein Update auf 3.8.1 zu machen so weit funktioniert das auch ganz gut nur gibt es in der Darstellung ein Problem.

Im Mozilla wird alles richtig angezeigt (Menue,Content,RightContent)im IE dagegen wird der rechte Content unter den HaupContent gelegt als ob die Seite zu klein ist. Hat da jemand ne Idee

anbei 2 Grafiken
Miniaturansicht angehängter Grafiken
seite-richtig-angezeigt-1.jpg   seite-richtig-angezeigt-2.jpg  

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Sponsored Links
  #2  
Alt 14.01.06, 09:41
Forum Newbie
 
Registriert seit: 01.12.05
Beiträge: 12

Es schwierig ohne Beispiel deines Template Codes oder des HTML Templates sowie einer eventuell vorhandenen CSS Datei eine generelle Aussage zu deinen Problem zu treffen. Wenn du dienen kompletten Code posten könntest wurde das die Analyse sehr erleichtern. Grundsätzlich ist es so, dass der IE gewisse CSS Einstellungen wie "height" oder "width" ignoriert, wenn im jeweiligen Bereich (Content) kein Inhalt vorhanden ist.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #3  
Alt 14.01.06, 19:11
Forum Zuschauer
 
Registriert seit: 11.01.06
Alter: 35
Beiträge: 7

Hi da hast du natürlich recht anbei mal der Template Code, denke das es irgend wo daran liegt weil im 3.6.0RC1 ging es ja.

Constants:
Typoscript-Code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
#---------------------------------------------------------------
# Meta tags
#---------------------------------------------------------------
plugin.meta {
description = Enter description here
keywords = Enter keywords here
robots = all
copyright = xyz
email = Enter author email here
author = Enter author name here
language = Enter your language here
distribution = xyz
rating = General
revisit = 7
includeGlobal = 0
}

#---------------------------------------------------------------
# Constants for header rendering
#---------------------------------------------------------------
content.wrap.header = |
content.defaultHeaderType = 1
content.wrap.header1 = <h2>|</h2>
content.wrap.header2 = <h3>|</h3>
content.wrap.header3 = <h4>|</h4>
content.wrap.header4 = <h5>|</h5>
content.defaultSubHeaderType = 1
content.wrap.subheader1 = <p class="sub-head">|</p>
content.wrap.subheader2 = <p class="sub-head">|</p>
content.wrap.subheader3 = <p class="sub-head">|</p>
content.wrap.headerDate = <p id="date-stamp">|</p>

#---------------------------------------------------------------
# Constants for lastupdate rendering
#---------------------------------------------------------------
styles.content.lastUpdate.wrap = <p id="date-stamp">|</p><div class="hrule-dots">&nbsp;</div>
styles.content.lastUpdate.label = New as of

#---------------------------------------------------------------
# Constants for general content rendering
#---------------------------------------------------------------
styles.content.imgtext.captionWrap = <p class="caption" style="font-size:7pt">|</p>
styles.content.imgtext.borderThick = 1
styles.content.imgtext.captionSplit = 1
content.linkToTop = <a href="#top">Back to top</a><br>

styles.content.uploads {
wrap = |
labelWrap = <img src="http://127.0.0.1/ui/v8/images/icon-link-download.gif" height="12" width="14" align="middle">|
sizeWrap = <span class="gray-dark">|</span>
tdWrap = <td>|</td>
descriptionWrap = |
jumpurl_secure =
jumpurl_secure_mimeTypes = pdf=application/pdf, doc=application/msword
jumpurl =
}

#---------------------------------------------------------------
# Constants for related links rendering
#---------------------------------------------------------------
temp.leftOptNavigation.wrap = <table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td>&nbsp;&nbsp;</td><td width="100%">|</td><td>&nbsp;&nbsp;</td></tr></table><p>&nbsp;</p><div class="hrule-dots">&nbsp;</div>

Setup:
Typoscript-Code:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
#---------------------------------------------------------------
# General config parameters
#---------------------------------------------------------------
page.config.doctype = xhtml_trans

# language settings
config.language = en
config.locale_all = en_EN

# general config
config.stat_typeNumList = 0
config.stat_excludeBEuserHits = 1
config.index_externals = 1

# Enable indexed search
page.config.index_enable = 1
plugin.tx_indexedsearch.search.rootPidList = -1

# Define targets for internal and external links
#config.intTarget = _top
#config.extTarget = _blank

# Enable SimulateStaticDocuments for parameters with md5
config.simulateStaticDocuments = 1
config.simulateStaticDocuments_aliasPro = 1
config.simulateStaticDocuments_pEnc = md5

# enable adminPanel for Frontend Editing
config.admPanel = 0

#---------------------------------------------------------------
# Modified cOBJECTS
#---------------------------------------------------------------

tt_content.div >
tt_content.div = TEXT
tt_content.div.value = <div class="hrule-dots">&nbsp;</div>

styles.content.lastUpdate.date >
styles.content.lastUpdate.strftime =%d %b %Y

#---------------------------------------------------------------
# cOBJECTS for injection
#---------------------------------------------------------------
temp.BREADCRUMBS = HMENU
temp.BREADCRUMBS {
if.value = 1
if.isGreaterThan.data = level : 1
special = rootline
special.range = 1|-2
1 = TMENU
1.target = _top
1.wrap = <p id="breadcrumbs">|</p>
1.NO {
linkWrap = | >
}
}

temp.CONTENT_MAIN < styles.content.get
temp.CONTENT_RIGHT < styles.content.getRight

temp.NAV = HMENU
temp.NAV {
1 = TMENU
1.wrap = <div class="top-level"> | </div>
1 {
NO.linkWrap = |

CUR = 1
CUR {
linkWrap = |
ATagParams = class="active"
}
}

2 < .1
2.wrap = <div class="second-level"> | </div>
2 {
NO.linkWrap = |

CUR = 1
CUR {
ATagParams = class="active"
}
}

3 < .1
3.wrap = <div class="third-level"> | </div>
3 {
NO.linkWrap = |

CUR = 1
CUR {
ATagParams = class="active"
}
}
}

### Content rendering for left menu

temp.leftOptMenu = COA
temp.leftOptMenu {
10 >
10 = TEXT
10.field = header
10.wrap = <p><b>|</b></p>
20 = TEXT
20 < tt_content.text.20 - ERROR: Line 107: Object copied in this line "20 < tt_content.text.20" would leave either the value or properties untouched in TypoScript Version 1. Please check that this is not a problem for you.
20.wrap = <p class="indent">|</p>
20.parseFunc.nonTypoTagStdWrap >
20.parseFunc.nonTypoTagStdWrap.brTag = <br />
}

### left menu

temp.RELATED_LINKS = COA
temp.RELATED_LINKS.20 < styles.content.getLeft
temp.RELATED_LINKS.20 {
stdWrap.wrap = {$temp.leftOptNavigation.wrap}
stdWrap.required = 1
renderObj < temp.leftOptMenu
}

temp.RELATED_LINKS.40 = TEXT
temp.RELATED_LINKS.40 {
value = Site Secured by<br><a href="http://127.0.0.1/password" target="_blank"><small>Intranet Password</small></a>
wrap = <table width="100%" cellpadding="10" cellspacing="0" class="secured-link"><tr><td valign="middle"><img src="http://127.0.0.1/ui/v8/images/icon-link-secured.gif" border="0" alt="Site Secured" align="absmiddle"></td><td align="center" valign="middle"> | </td></tr></table>
}

### Personalization
temp.PERSONALIZATION = HTML
temp.PERSONALIZATION.value =
#temp.PERSONALIZATION.value = <a id="sign-in-out" href="http://127.0.0.1/login.0.html">Sign in</a>
#[loginUser = *]
#temp.PERSONALIZATION.value = <span id="user">Hello <!--###USERNAME###--></span>| <a id="sign-in-out" href="http://127.0.0.1/login.0.html">Sign out</a>
#[global]

#---------------------------------------------------------------
# Prepare page template selector
#---------------------------------------------------------------
plugin.tx_rlmptmplselector_pi1 {

templateType = main

//templatePathMain = EXT:xyz_w3v8_intranetdesign/templates/main/
//templatePathSub = EXT:xyz_w3v8_intranetdesign/templates/sub/

defaultTemplateFileNameMain = pagestyle_B.html

inheritMainTemplates = 1
inheritSubTemplates = 1
}

#---------------------------------------------------------------
# Main TEMPLATE cObject for the HEAD
#---------------------------------------------------------------

temp.headTemplate = TEMPLATE
temp.headTemplate {
template =< plugin.tx_rlmptmplselector_pi1
# Select only the content between the <head>-tags
workOnSubpart = DOCUMENT_HEADER
}
#---------------------------------------------------------------
# Main TEMPLATE cObject for the BODY
#---------------------------------------------------------------

temp.mainTemplate = TEMPLATE
temp.mainTemplate {
template =< plugin.tx_rlmptmplselector_pi1
# Select only the content between the <body>-tags
workOnSubpart = DOCUMENT_BODY

#Inject subparts
subparts.BREADCRUMBS < temp.BREADCRUMBS

subparts.LEFT_NAV < temp.NAV
subparts.CONTENT_MAIN < temp.CONTENT_MAIN
subparts.CONTENT_RIGHT < temp.CONTENT_RIGHT
subparts.RELATED_LINKS < temp.RELATED_LINKS
subparts.PERSONALIZATION < temp.PERSONALIZATION

subparts.LAST_UPDATE = CONTENT
subparts.LAST_UPDATE < styles.content.lastUpdate

marks.SITETITLE = HTML
marks.SITETITLE.value < sitetitle
}

#---------------------------------------------------------------
# Generate the page and invoke the page template selector
#---------------------------------------------------------------
page = PAGE
page.typeNum = 0
page.bodyTag = <body id="w3-xyz-com" class="article">
page.includeCSS {
file1 = local*.css
}

page.10 < temp.mainTemplate

page.headerData.10 < temp.headTemplate

### Make click-enlarge display as 1024x768
tt_content.image.20.1.imageLinkWrap.width = 1024m
tt_content.image.20.1.imageLinkWrap.height = 768m
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Antwort


Themen-Optionen Thema durchsuchen
Thema durchsuchen:

Erweiterte Suche
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge anzufügen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

vB Code ist An.
Smileys sind An.
[IMG] Code ist An.
HTML-Code ist Aus.
Trackbacks are An
Pingbacks are An
Refbacks are An


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
BE produktliste wird nicht richtig angezeigt... Friik tt_products 2 29.05.08 09:48
Tabelle wird im IE nicht richtig angezeigt flixo TYPO3 4.x Fragen und Probleme 1 09.10.07 14:57
Untertitel wird nicht richtig angezeigt Sommerjogurth News (tt_news, mininews und Co) 1 03.09.07 16:48
GMENU_FOLDOUT wird nicht richtig angezeigt dosn TYPO3 4.x Fragen und Probleme 0 27.08.07 08:17
FE wird die Navigation nicht richtig angezeigt. scorp TYPO3 4.x Fragen und Probleme 4 02.11.06 11:56


Alle Zeitangaben in WEZ +1. Es ist jetzt 13:46 Uhr.


Powered by vBulletin® Version 3.6.8 Patch Level 2 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Template-Modifikationen durch TMS