CSS Editor, logo reposition

Hi, i have just been getting to grips with the CSS editor, i have moved the senders address and Recipients address around so i can use windowed envelops but now i need to reposition my logo to the right hand side, i can seem to see anything relating to the logo

can you help

Gary

invoice-logo-img
is the class name for the Logo Image… Although it can be controlled from the invoice-header-region class

I have set mine up for windowed envelopes. Although i left my Logo on the left.

/*HEADER DETAILS------------------------------- */
 .invoice-header-region {
    width:630px;
	text-align:left;
	position: static;
	margin-bottom:30px;
}
.invoice-header {
	position: absolute;
	top: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 26px;
	font-weight: bold;
	width:630px;
	text-align:right;
}
.invoice-logo-img{
width:400px;
height:50px;
}
.invoice-header-label {
	color: #ff8000 !important;
}
.invoice-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #000000;
}

is how i currently have mine set… However… if you wanted to move the logo to the right…

/*HEADER DETAILS------------------------------- */
 .invoice-header-region {
    width:630px;
	text-align:right;
	position: static;
	margin-bottom:30px;
}
.invoice-header {
	position: absolute;
	top: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 26px;
	font-weight: bold;
	width:630px;
	text-align:left;
}
.invoice-logo-img{
width:400px;
height:50px;
}
.invoice-header-label {
	color: #ff8000 !important;
}
.invoice-text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	color: #000000;
}

would be a simple change… Notice how i used the invoice-header-region text alignment for the image instead of css for the image??.. either should work ok :slight_smile:

2 Likes