Forum Replies Created
-
AuthorPosts
-
saragMember
For the padding search for the below code in your stylesheet then adjust the second 0 I tried it at 30px and thought it looked good.
.entry-content p,
.home #content p,
.page .entry-content p {
padding: 0 0 15px;
}Change it to something like this
.entry-content p,
.home #content p,
.page .entry-content p {
padding: 0 30px 15px;
}For the menu find the below code
#subnav {
background: url('images/subnav.png') repeat scroll 0% 0% transparent;
border-bottom: 1px solid #DDD;
clear: both;
color: #FFF;
font-family: 'Oswald',arial,serif;
font-size: 14px;
text-transform: uppercase;
margin: 0px auto;
overflow: hidden;
width: 920px;
word-spacing: 2px;
}Then add some padding to it I tried padding-left:65px;
It will look like this when done
#subnav {
background: url('images/subnav.png') repeat scroll 0% 0% transparent;
border-bottom: 1px solid #DDD;
clear: both;
color: #FFF;
font-family: 'Oswald',arial,serif;
font-size: 14px;
text-transform: uppercase;
margin: 0px auto;
overflow: hidden;
width: 920px;
word-spacing: 2px;
padding-left: 65px;
}To change the fonts I would suggest taking a look at Google fonts there are several choices https://www.google.com/fonts
then try following this post on how to add the Google fonts to your site.Good luck!
saragMemberIf you add this to your stylesheet it should work
.home #content{
background-color:transparent;
}Then find this section in your stylesheet and add width:940px;
.outreach #genesis-responsive-slider {
border: none;
padding: 0;
}Should look like this when done
.outreach #genesis-responsive-slider {
border: none;
padding: 0;
width:940px;
}saragMemberCan you add this to your css
.gallery-list .container
.imgContainer img{
width:50% !important;
}Then you may need to use this plugin to regenerate your thumbnails http://wordpress.org/plugins/regenerate-thumbnails/
before you will see the changes of the image on your site.saragMemberThis plugin may help http://wordpress.org/plugins/theme-my-login/
You may also want to try a membership plugin wpmu has one that may work well for you. http://premium.wpmudev.org/project/membership/saragMemberIt looks like the header width is to large for the header area. It would probably be easier to change the header's image size then to alter the code. You can use http://www.picmonkey.com/ under the basic edits you can crop the image. Otherwise you will have to widen several sections of your theme.
saragMemberIn your stylesheet you will need to make a couple of changes
First you will need to change the wrap width.wrap {
margin: 0 auto;
max-width: 1140px;
}To
.wrap {
margin: 0 auto;
max-width: 1000px;
}For the Homepage you have to change
.full-width-content #content {
border: medium none;
padding: 25px 0;
width: 1140px;
}To
.full-width-content #content {
border: medium none;
padding: 25px 0;
width: 1000px;
}For the pages you will need to change
.content-sidebar #content, .sidebar-content #content {
width: 810px;
}To
.content-sidebar #content, .sidebar-content #content {
width: 720px;
}.sidebar {
display: inline;
float: right;
font-size: 14px;
padding: 25px 0 0;
width: 250px;
}TO
.sidebar {
display: inline;
float: right;
font-size: 14px;
padding: 25px 0 0;
width: 200px;
}saragMemberI would try going into your plugins and completely uninstall the slider and then re-install it. You will then have to go back into the widget area and put it back into the slider spot.
saragMemberThis may work there are several different display options. http://wordpress.org/plugins/easy-fancybox/installation/
saragMemberLooks great 🙂 I did notice that some of the images are missing on some of the pages ( the ones under what we do).
-
AuthorPosts