Here's a common bug with vb CMS and Blogs add-ons:
-When viewing an article,
set to be displayed as "Full Display in Section Page", or an entry,
when viewing blog.php not entry.php?x, with large images, all images
WILL be displayed in actual sizes.
Lynn was kind enough to provide me with this quick fix for the CMS:
Quote:
This looks like a bug or just something overlooked. The CSS for the image in the article page doesn't seem to be present for the article in the section page. This is the CSS in the article page:
Code:
.article img {
border: 0 none;
margin: 10px;
max-width: 800px;
}
You can just add it to additional.css template:
Code:
.cms_article_txt_content img {
max-width: 800px;
}
|
Unfortunately by the time I discovered the Blogs issue, she was just about to take off on vacation and couldn't help

However, as soon as she get back I'll ask her again
BTW
this mod works but my only problem with it, is that you can only use fixed pixel sizes not %100
All the best!