Forum Replies Created
-
AuthorPosts
-
dnf0929
MemberUnder Appearance > Header you can add a logo. It's set to 320x65 but you can modify those dimensions in functions.php. If you do that you'll also need to modify the height in styles.css.
.site-header {
background: url(images/texture.png)
min-height: 65px
position: fixed;
width: 100%;
z-index: 999;
}.header-image .site-title a {
float: left;
min-height: 65px;
width: 100%;
}dnf0929
MemberIt's controlled by your basic WordPress settings. In your WP Dashboard go to Settings > Reading and change the number in "Blog pages show at most" field.
dnf0929
MemberI found this post pretty helpful when I was building my first full width Genesis site.
Genesis Structural Wraps & Creating a Full Width Genesis Child Theme
Good luck!
dnf0929
MemberThe image is 1000px wide and the site is 960px so he's using a negative margin (margin-left: -20px) to pull it off the side of the page. As far as the font go you just have to make sure you're being specific enough with your css. If you provide a link to your site I might be able to help a bit more. Feel free to PM me if it's "under construction".
dnf0929
MemberHe's created a custom background (http://www.atlantarealestateexperts.com/images/communitybanner.jpg) and applied it using css.
.communities {
background-attachment: scroll;
background-clip: border-box;
background-color: transparent;
background-image: url("/images/communitybanner.jpg");... -
AuthorPosts