[Pro] Can j get rid of x and y

When you ‘get css’ you are provided code that looks something like

.myButton {
	background-color:#44c767;
	-moz-border-radius:28px;
	-webkit-border-radius:28px;
	border-radius:28px;
	border:1px solid #18ab29;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButton:hover {
	background-color:#5cbf2a;
}
.myButton:active {
	position:relative;
	top:1px;
}

Note the ID of your FW generated button and replace all instances of ‘.myButton’ with ‘#myID’ so it looks like

#myID {
    background-color:#44c767;
    -moz-border-radius:28px;
    -webkit-border-radius:28px;
    border-radius:28px;
    border:1px solid #18ab29;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:17px;
    padding:16px 31px;
    text-decoration:none;
    text-shadow:0px 1px 0px #2f6627;
}
etc.

Wrap the style code in style Tags such as

<style type="text/css">
your styles here
</style>

Paste this all in Page>html Markup in the before end slot and you should be done.

David


freewaytalk mailing list
email@hidden
Update your subscriptions at: