New Topic

Reply To: Customization (My Website)

Home › Forum › Customization › Customization (My Website) › Reply To: Customization (My Website)

#935

StartupWP
Keymaster

1. Because the design is responsive to screen size. This can be disabled by increasing the layout’s min-width:

Appearance > StartupPro Options > Custom Styles > Minimum Layout Width > Set to 1000

2. Try:

nav #searchsubmit {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  color: transparent;
  display: block;
  font-size: 0;
  height: 23px;
  left: 100%;
  margin-left: -28px;
  position: absolute;
  width: 21px;
}

3. Use:

footer li {
  border-right: 1px solid #BF9619 !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 1px 5px 1px 2px !important;
}

4. In your Copyright Wording area, remove the <strong>..</strong> tags from around it.

5. Change:

#menu-my-mega-menu li .sub-container .sub {
  background: none repeat scroll 0 0 #FFFFFF;
  border-color: #DBB84D #B88A00 #B88A00 #DBB84D;
  border-style: solid;
  border-width: 1px;
}

to:

#menu-my-mega-menu li .sub-container {
  background: none repeat scroll 0 0 #FFFFFF;
  border-color: #DBB84D #B88A00 #B88A00 #DBB84D;
  border-style: solid;
  border-width: 1px;
  margin-left: 2px;
}