block moving


Author Message
tom

Posted: 1/18/2010
Quote message 

Hi,

I need to move the right block over about 2 pixles.

look here:

http://templebethmiriam.org/2010/01/16/hello-world/

notice on the right the white space between the block and the page?

any help?

Tom
 
Garry

Posted: 1/18/2010
Quote message 

Try changing the value of float from left to right in following styling rule in your style sheet:

.art-contentLayout .art-sidebar1
{
border:0 none;
float:left;
margin:0;
overflow:hidden;
padding:0;
position:relative;
width:141px;
}
 
Tom

Posted: 1/19/2010
Quote message 

Quote Garry:

Try changing the value of float from left to right in following styling rule in your style sheet:

.art-contentLayout .art-sidebar1
{
border:0 none;
float:left;
margin:0;
overflow:hidden;
padding:0;
position:relative;
width:141px;
}


That worked. Thank you.

now can you tell me how to make it the full page height?

thanks in advance

 
Garry

Posted: 1/19/2010
Quote message 

I am not sure what do you mean by full height.
 
Tom

Posted: 1/22/2010
Quote message 

Quote Garry:

I am not sure what do you mean by full height.


on the left we have the table going all the way down. is there a way to do that on the right?

thanks.
 
Garry

Posted: 1/22/2010
Quote message 

Lot of users are discussing this feature but I think it is not available in Artisteer. You can increase the height of your sidebar manually but if height of content area increases than sidebar, the empty area will again start displaying.
 
DLR

Posted: 1/23/2010
Quote message 

Since your site doesn't seem to be up i am not sure but you may find this bit of code useful if your trying to make a text widget go to Any height, It also puts a scroll bar in if the content in the text widget is longer then the box settings you give it. Change the 150 to whatever height you want.

This code goes In the text area of the widget:

<div style="height:150px;white-space:pre-wrap;overflow:auto;">
CONTENT_HERE
</div>