-4

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 RSS
Kyle Boas
  • 45
  • 1
  • 7
  • 2
    Print a screencapture of your site onto paper, get some scissors, cut out the submit button, and glue it in the new location. – Marc B Sep 05 '14 at 17:51
  • Why don't you look at the source of the page and figure it out? – Rick S Sep 05 '14 at 17:52
  • Your question is **not likely to help anyone in the future**. While asking questions you need to post the minimal code needed to reproduce the issue. If you never seen anyone ask questions on this site, or you just don't know http://stackoverflow.com/help/how-to-ask read the [help] – Roko C. Buljan Sep 05 '14 at 17:55
  • I have been looking at the source of the page for about 2 days and haven't been able to figure out what to change in the css. – Kyle Boas Sep 05 '14 at 18:48

2 Answers2

0

Without 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'});

jsFiddle Demo

References:

Is it possible to use position relative more than once in the same html page?

Community
  • 1
  • 1
cssyphus
  • 37,875
  • 18
  • 96
  • 111
0

change padding for to what you see below

.feature-area .feature-area-bottom {    
    padding: 0 0 9px;
}
Grasper
  • 1,293
  • 12
  • 26