Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.
Posted By: hugatree<img src="WebPicHome.jpg" width="313" height="202" alt="" border="0" align="right" />This is because Plogger runs at the Plogger root level. Let's say you install Plogger in http://www.mysite.com/plogger/. Plogger runs at http://www.mysite.com/plogger/index.php. Your theme folder is at http://www.mysite.com/plogger/themes/default/images/image.jpg (or if you're using the SVN version, it's at http://www.mysite.com/plogger/plog-content/themes/default/images/image.jpg. When you just put in the name of the file without a path like in your example, it is looking for the image in the same folder as the Plogger script (in the http://www.mysite.com/plogger/ folder). You need to either put the full URL - http://www.mysite.com/plogger/themes/default/images/image.jpg - or the root path - /plogger/themes/default/images/image.jpg - or a relative path - themes/default/images/image.jpg - to get the image to show up correctly.
Posted By: hugatreeYou're missing your closing semicolons in your styles. It should be like this:
.bigprint { font: 54pt bold: color: red }
.medprint { font: 26pt bold: color: red }
<style type="text/css">
.bigprint {
font: 54pt;
bold: color: red;
}
.medprint {
font: 26pt;
bold: color: red;
}
</style>
1 to 5 of 5