Get Your Premium Membership
Beto Riginale
(Click for Poet Info...)

Ciao a tutti !
Welcome to my work and blog. Here are a few words about me.
        I was born and raised near Berkeley, California, and was introduced to the beatniks in North Beach by a high school friend in the late '50s. That is an event that influenced the rest of my life.
        I studied mathematics, philosophy, and German at university. By a quirk of fate, I became a computer scientist and website designer for most of my professional life. Since retirement, I have written poetry, essays, and translated German -> English and Spanish -> English. I write only free verse, haiku, and (some) prose poetry.

My favorite poets (in no particular order) :

Allen Ginsberg
Lawrence Ferlinghetti
Gertrude Stein
E. E. Cummings
William Carlos Williams
T. S. Eliot
Jack Kerouac
Alejandra Pizarnik
Charles Bukowski

Thank you for stopping by to read my work and blog.
~Beto

PoetrySoup :: Typography II

Blog Posted by Beto Riginale: 12/12/2019 4:57:00 PM

Ciao amici !

This article is intended primarily for writers who have at least some familiarity with web page formatting. For those who are not familiar with the terms used here, if you follow the instructions given you sholud have good results also. If you have not read my first article on typography, please read it here.

When I first started submitting poetry to PoetrySoup, one of the most difficult things I encountered was the lack of typography options in the poem submission (editing) field on the Submit Poem page. The suggestions I make here are (mostly) for poems and the information area related to poems on the poem submission page.

For me, the most irking typographical thing is the lack of white space, in particular the left and right margin space. By default, poems are left justified very close (about 1 em) to the left margin, which, in my opinion, distracts from the content of the poem.

So, I began looking for a way to add some white space to the left of each line. My first idea was to add several spaces at the beginning of each line, but that got pretty boring on longer poems and did not work in the poem information section preceding the poem.

After some playing around, I discovered that I could use a stylesheet to add a left margin to the entire poem. To do that, I only needed to click the "Source" button on the "About Poem" field further down the page. This enabled me to add a style to the poem field.

Poems are displayed in a <pre> ... </pre> block which means that the poem is displayed exactly as entered in the poem field on the submission page. Fortunately there is only one <pre> block on the page when displayed for reading. Thus, by entering the <style type="text/css">....</style> in the source view, I could use any css I needed.

To add wider left and right margins around the poem, enter the following in the source view:

    <style type="text/css">
       pre {margin-left: 2em; margin-right:2em; }
    </style>

which will result in a 2 em (the width of 2 "m" characters, about 1/4 inch) margin, left and right of the text.

I prefer serif fonts to the default san-serif font, so I added a definition for that:
    font-family: serif;
which causes the default serif font (usually Times or Times New Roman) to display the text. I also prefer a little larger text size (the default is 14px) so I increased that with the addition of
    font-size: 16px;
and a little more leading for easier reading, so I added
    line-height: 1.5;

Thus, my default style for a poem is:

    <style type="text/css">
        pre {margin-left: 2em; margin-right:2em;
            font-family: serif;
            font-size: 16px;
            line-height: 1.5;}
    </style>

Here is an example of how each looks, first the default followed by my changes:

Dawn's light seeks to obliterate silence
Night overpowers Day's cacophony
Loneliness reaches to touch a heart
Darkness sings the song of fire.
Dawn's light seeks to obliterate silence
Night overpowers Day's cacophony
Loneliness reaches to touch a heart
Darkness sings the song of fire.

I you want the poem right justified, simply add
    text-align: right;
to your style definition, with the resulting:

Dawn's light seeks to obliterate silence
Night overpowers Day's cacophony
Loneliness reaches to touch a heart
Darkness sings the song of fire.

Obviously, you can add any other styles you want.

To add a left and right margin to the poem's information section, a new style definition must be added. 

   <style type="text/css">
        .collapsePanel {margin-left: 2em;
        margin-right:2em; }
   </style>

In a similar fashion, blog entries can be formatted. However, in order to access only the blog text, it must be wrapped in its own, named, block, i.e. in a <div>....</div> tag pair. So, to add left and right margins, the style sheet might be:

    <style> type="text/css">
        #name {margin-left: 2em;
        margin-right:2em; }
    </style>
<div id="name">Write your text here</div>

The result will be similar to this page.

If you want to use any of the styles above, simply copy the style defintion from <style type="text/css">to </style> and paste into a simple text document. I keep the definitions in a plain text (.txt) document on my desktop for easy access. Be sure that you have all of the style definition, from tag. Also, be sure to check the results when published and make any necessary corrections or changes.

If you have any questions, please post them in the comments below. 

Thanks for reading, and good luck

- beto

 



Please Login to post a comment

Please stay on topic with your comments. Off topics comments may be removed. Thanks.



Characters Remaining:
Type the characters you see
CAPTCHA
Change the CAPTCHA codeSpeak the CAPTCHA code
 

Date: 12/12/2019 8:57:00 PM
oh goodness I am going to need that good luck when I attempt reading thru part I. You have some very good points regarding the lack of options with typography and thank you for taking the time to show it but I know all this technical jargon is going to set off a migraine so I might as well open a bottle of wine before I start reading! :)
Login to Reply
Woodrow Avatar
Susan Woodrow
Date: 12/15/2019 12:28:00 AM
um...I'm singing already! can you please top my eggnog with more brandy?
Woodrow Avatar
Susan Woodrow
Date: 12/14/2019 11:42:00 PM
singing "macho macho man...."
Woodrow Avatar
Susan Woodrow
Date: 12/13/2019 8:09:00 PM
oh Tommy...Pinot Noir is the preference but if you bring the right dainty bites, Grigio should be good :)
Woodrow Avatar
Susan Woodrow
Date: 12/13/2019 8:06:00 PM
for sure! not a fan of scotch (so bring it for yourself if that's what you drink) but wine and vodka sound good to me and sunny dispositions are a must! What? You scared of Tommy's kisses?! It's only a Xmas one - should be quite harmless, I'm sure...lol
Riginale Avatar
Beto Riginale
Date: 12/13/2019 8:49:00 AM
Susan, enjoy the wine. I know that this is all a little technical but my hope is that it will help some writers but I do not want to give you a headache :-) I am working on a part 3 with some non-technical tips you might enjoy. - beto

Previous Blogs

 
PoetrySoup :: Typography III
Date Posted: 11/15/2020 11:36:00 AM
Women's Day
Date Posted: 3/9/2020 6:44:00 PM
An Alternative
Date Posted: 2/25/2020 2:10:00 PM
Darkness Revisited :: decomposed
Date Posted: 1/17/2020 2:51:00 PM
On Poetry :: Punctuation
Date Posted: 12/28/2019 4:29:00 PM
Have Some Fun
Date Posted: 12/16/2019 1:02:00 PM
PoetrySoup :: Using a Word Processor
Date Posted: 12/14/2019 1:21:00 PM
PoetrySoup :: Typography II
Date Posted: 12/12/2019 4:57:00 PM
bow hows decrypted
Date Posted: 12/10/2019 4:41:00 PM
PoetrySoup :: Typography I
Date Posted: 12/6/2019 6:11:00 PM
On Poetry :: How I Translate
Date Posted: 11/22/2019 5:08:00 PM
On Poetry :: Translation
Date Posted: 11/20/2019 3:39:00 PM

My Photos



Book: Reflection on the Important Things