Topic: home image sizing

i couldn't figure out how to adjust the image size on the home image, pls help.
angjeeryu.com

Re: home image sizing

and another thing, my menus have gone lower after the update of 1.0.4. how can i fix that?

Re: home image sizing

i couldn't figure out how to adjust the image size on the home image, pls help.

The size of the site logo changes dynamically with the size of the user's browser window but you can set the maximum width for the image in the 'Site -> Customize Theme -> Site Header' section.

and another thing, my menus have gone lower after the update of 1.0.4. how can i fix that?

If you referring to the navigation menu ("Home Gallery Info."), then it appears very close to the top of the page when I view your site in my own browsers.
If you have made any changes recently, try clearing your browser's cache before reloading your site to ensure that your browser is not using older versions of your pages.

Re: home image sizing

Steven @ Showkase wrote:

The size of the site logo changes dynamically with the size of the user's browser window but you can set the maximum width for the image in the 'Site -> Customize Theme -> Site Header' section.

its not the logo but i want to resize the image under the navigation menu, thx

Re: home image sizing

Your home page is an 'About' page and the image uploaded on an 'About' page is also dynamically resized depending on the size of the user's browser window.

If you want to display an image on an 'About' page with fixed dimensions, then rather than point to an image using the built-in 'Image Url' functionality, use code such as the following in the page's text editor (in 'Source' mode):

<script type="text/javascript">
var elements = document.getElementsByClassName('profile-image');
var element = elements[0];
element.innerHTML = '<img alt="image" height="150" src="/showkase/_library/files/image.jpg" width="200" />';
</script>