Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | solved ticket [1b41304d8b]: moved style clear: both from code for content div to footer css, needs redefinition of div.footer in the css configuration! |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | wolfgangFormat2CSS_2 |
| Files: | files | file ages | folders |
| SHA1: |
15b3ad250914a22d1fa3ee4b9dab6b79 |
| User & Date: | Ratte 2010-09-28 08:29:00.000 |
References
|
2010-09-28
| ||
| 08:32 | • Verified ticket [1b41304d8b]: <div style="clear: both"> is really necessary? plus 1 other change ... (artifact: 48578877c1 user: wolfgang) | |
Context
|
2010-09-28
| ||
| 09:02 | solved ticket [1b41304d8b]: moved style clear: both from code for content to css, adding the corresponding div only, if a sidebox wass used ... (check-in: 26fc585ecf user: Ratte tags: wolfgangFormat2CSS_2) | |
| 08:29 | solved ticket [1b41304d8b]: moved style clear: both from code for content div to footer css, needs redefinition of div.footer in the css configuration! ... (check-in: 15b3ad2509 user: Ratte tags: wolfgangFormat2CSS_2) | |
| 05:52 | leave notes in help for re/deconstruct about flat import( ticket [3f748ac12c] ) ... (check-in: 92f8cefcc8 user: Ratte tags: wolfgangFormat2CSS_2) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
140 141 142 143 144 145 146 | @ <div class="content"> cgi_destination(CGI_BODY); /* Put the footer at the bottom of the page. ** the additional clear/both is needed to extend the content ** part to the end of an optional sidebox. */ | < | 140 141 142 143 144 145 146 147 148 149 150 151 152 153 |
@ <div class="content">
cgi_destination(CGI_BODY);
/* Put the footer at the bottom of the page.
** the additional clear/both is needed to extend the content
** part to the end of an optional sidebox.
*/
@ </div>
zFooter = db_get("footer", (char*)zDefaultFooter);
if( g.thTrace ) Th_Trace("BEGIN_FOOTER<br />\n", -1);
Th_Render(zFooter);
if( g.thTrace ) Th_Trace("END_FOOTER<br />\n", -1);
/* Render trace log if TH1 tracing is enabled. */
|
| ︙ | ︙ | |||
358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
@ float: left;
@ clear: left;
@ white-space: nowrap;
@ }
@
@ /* The footer at the very bottom of the page */
@ div.footer {
@ font-size: 0.8em;
@ margin-top: 12px;
@ padding: 5px 10px 5px 10px;
@ text-align: right;
@ background-color: #558195;
@ color: white;
@ }
| > | 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
@ float: left;
@ clear: left;
@ white-space: nowrap;
@ }
@
@ /* The footer at the very bottom of the page */
@ div.footer {
@ clear: both;
@ font-size: 0.8em;
@ margin-top: 12px;
@ padding: 5px 10px 5px 10px;
@ text-align: right;
@ background-color: #558195;
@ color: white;
@ }
|
| ︙ | ︙ |