

Enter the Crypt - OpenID
The Cemetery - The Morgue - Join the Undead - Offerings - Download - DJ News - Advertise on DJ
Morgue Directory - Random Grave - Place of Death - Search Morgue - Interests
Botched Murders - FAQ - Lost Info? - Spoon Feeding - Hauntings
|


Resizing your journal tables [Disjointed] style
This tutorial will deal with resizing your journal tables with the Disjointed system style.
This ONLY applys if you are using the Disjointed style.
This alters the width of the table which holds the subject, content, and comments for each post. The tables which hold the navigation links will remain unchanged.
In your own style If you have your own style, and you want to move the tables without having to go through and change all the widths, then paste this code into the <head> section of your LASTN_PAGE:
<style type="text/css"> <!-- /* moving entry tables*/ td { text-align: left; }
/* alignment of entries text */ .entries td { text-align: left; }
/* resizing */ .entries { width: 85%; } --> </style>
In OverridesIf, however, you don't have your own style, and rely on overrides, then you will want to paste this into your overrides box at http://deadjournal.com/modify.bml: GLOBAL_HEAD<= <style type="text/css"> <!-- /* moving entry tables*/ td { text-align: left; }
/* alignment of entries text */ .entries td { text-align: left; }
/* resizing */ .entries { width: 85%; } --> </style> <=GLOBAL_HEAD
N.B. If you have more than one GLOBAL_HEAD override, you will need to merge them. See this FAQ for instructions. To change the location of the entry tables, you can change the highlighted part of the section for moving the entry tables to left, right or center. To change the alignment of the text within the entries, you can change the highlighted part of the section for the entry text to left, right, justify or center. To change the width of the entry tables you can change the highlighted percentage to any percentage value that suits you.
|