Blogger Button to right of post


Author Message
SarahsCorner

Posted: 1/12/2012
Quote message 

Hello! I've finally discovered how to use Artisteer's amazing buttons in my blog, by using the jump break option on my homepage. However, the button is on the left and I need it to be on the right.

Where do I locate this option in the HTML?

http://sarahscorner.net ~ if you care to see the problem
 
jrgweb

Posted: 1/14/2012
Quote message 

around line 976 you will find this:

span.art-button-wrapper
{
position:relative;
vertical-align: middle;
display: inline-block;
position: relative;
height: 29px;
overflow: hidden;
white-space: nowrap;
text-indent: 0;
width: auto;
max-width:892px;
margin: 0;
padding: 0;
z-index: 0;
}

simply add this: float: right:

so it will look like this when finished:

span.art-button-wrapper
{
position:relative;
vertical-align: middle;
display: inline-block;
position: relative;
height: 29px;
overflow: hidden;
white-space: nowrap;
text-indent: 0;
width: auto;
max-width:892px;
margin: 0;
padding: 0;
z-index: 0;
float: right;
}



 
SarahsCorner

Posted: 1/14/2012
Quote message 

Thank you. :) It worked!