[vinagre] help/C/introduction: fix how image renders in html.



commit 6c8dcc4ea9c07754454947e21dd1b3b97dd0a879
Author: Tiffany Antopolski <tiffany antopolski com>
Date:   Sat Feb 25 19:05:39 2012 -0500

    help/C/introduction: fix how image renders in html.
    
    The image is rendering too large for the <figure> element:
    http://library.gnome.org/users/vinagre/unstable/introduction.html.en
    
    I removed the <figure> element and replaced it with a <table> in order
    to preserve the <title>, which look more like a caption now.  Also
    added a "width" attribute in order to scale the image somewhat.

 help/C/introduction.page |   15 ++++++++++-----
 1 files changed, 10 insertions(+), 5 deletions(-)
---
diff --git a/help/C/introduction.page b/help/C/introduction.page
index 0d922d3..4931e71 100644
--- a/help/C/introduction.page
+++ b/help/C/introduction.page
@@ -31,9 +31,14 @@
     <item><p>browse local network for machines</p></item>
   </list>
 
-  <figure>
-    <title>Vinagre in action</title>
-    <media type="image" mime="image/png" src="figures/vinagre-connected.png"/>
-  </figure>
-
+    <table>
+      <tr>
+       <td>
+        <media type="image" src="figures/vinagre-connected.png" width="825">
+          <p>Screenshot of Vinagre in action</p>
+        </media>
+       </td>
+      </tr>
+      <tr><td><p><em>Vinagre in action</em></p></td></tr>
+   </table>
 </page>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]