My website is http://boasish.com
I would like to know how I can move my "Submit" Button up like it is on this site http://www.theminimalists.com
Facebook Twitter Pinterest RSSMy website is http://boasish.com
I would like to know how I can move my "Submit" Button up like it is on this site http://www.theminimalists.com
Facebook Twitter Pinterest RSSWithout any code in your question, this is a general answer.
You can change the position:
attribute in css
to either absolute
or relative
, and then use positioning commands such as top
and left
to relocate it.
Note that absolute
elements are positioned in relation to their nearest position:relative;
or position:absolute;
div.
$('#sub1').css({'position':'absolute','top':'20px','left':'150px'});
References:
Is it possible to use position relative more than once in the same html page?
change padding for to what you see below
.feature-area .feature-area-bottom {
padding: 0 0 9px;
}