View Single Post
Old 10-27-2015, 02:19 PM   #13
eschwartz
Ex-Helpdesk Junkie
eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.eschwartz ought to be getting tired of karma fortunes by now.
 
eschwartz's Avatar
 
Posts: 19,421
Karma: 85400180
Join Date: Nov 2012
Location: The Beaten Path, USA, Roundworld, This Side of Infinity
Device: Kindle Touch fw5.3.7 (Wifi only)
Quote:
Originally Posted by chaot View Post
You gave us further reasons for to do so, still I am not convinced (or I don't understand you).

Quote:
Originally Posted by theducks View Post
OR
Replace that mess with a Text star and assign it in a class that allows you to set a size and margin
Code:
.mystar {display:block;font-size: 1.2em;text-align center; margin: 1em 0; text-indent: 0;}
Please, where is to introduce that. I would like to test.

Of course, even though I had understood the methodology of approach, the regexes I had not known. These simplify the procedure considerably.

It is an additional optimization.

With the fixes you just did, you now have one (1) star image.

But you could remove that as well, and replace it with a text star:
Code:
*
which is less Kilobytes (actually bytes, 798 B --> 1 B)




I've always been more than happy with the following CSS+HTML instead of using images for change of scene:

Code:
# CSS
.scenebreak {
  text-align: center;
  text-indent: 0%;
  margin: 1em;
}

# HTML
<p class="scenebreak">* * *</p>
eschwartz is offline   Reply With Quote