Forum Replies Created
-
AuthorPosts
-
wp guy
MemberI use a plugin called Better WP Security.
wp guy
MemberHave you gone into your Genesis settings and switched it from text to image logo?
wp guy
MemberHmmmm, regarding just the layout maybe:
http://demo.studiopress.com/goinggreen/
wp guy
MemberPerfect, thank you!
wp guy
MemberNo, if you notice the photo, there's a white border around it. I don't want any white space at all.
wp guy
MemberIt's line 232 in your stylesheet - I changed it to 1px below and it did the trick:
.header-image #title a {
display: block;
float: left;
height: 1px;
overflow: hidden;
padding: 0;
text-indent: -9999px;
width: 450px;And change line 177 - I also changed it to 1px:
#header {
background: url();
border-bottom: 5px solid #c61a1a;
min-height: 1px;
}wp guy
MemberLooks like line 443 in your stylesheet - change to below.
#nav li li a:visited {
background: nne;
background-color: #cc9933;wp guy
MemberNo, I've done this plenty of times and if you change the logo width in your CSS to match the header width you'll be fine. But also try Genesis Simple Headers. I only have to do this "trick" when the Simple Header option doesn't work.
Beyond that, I always copy and paste the stylesheet to Notepad then it doesn't matter what I mess up. I can fix in a few seconds.
wp guy
MemberWell, someone might come along with a different way but as a "trick" just edit the logo height and width in your CSS then upload your logo. For example, your CSS might define your logo as 320px width. Change that to your header width which is likely 960.
The other option is to install the Genesis Simple Headers plugin.
wp guy
MemberAppears he built it from the Sample theme. Very nicely done.
wp guy
MemberI figured this out.
wp guy
MemberIt's an image. Just replace the "images/bg" image either with another image or edit the css to put in any color code.
/* Body
------------------------------------------------------------ */body {
background: url(images/bg.jpg);
}wp guy
MemberGo to your Genesis settings and make sure you have logo dropdown changed from text to image. Then you can either replace the logo.png file through your Cpanel or install the Genesis Simple Headers plugin and upload it there. Additionally, you can also upload your logo then replace the logo.png with the url path in your stylesheet.
wp guy
MemberI'll second what Brad said - viewing a site where the content took up the entire width would be a poor user experience.
wp guy
MemberThe thin image over the header can be found here:
/* Body
------------------------------------------------------------ */body {
background: url(images/border.png) repeat-x;
}March 18, 2013 at 2:20 pm in reply to: How to Find a Genesis Developer for Theme Install & Customization #29142wp guy
Memberwp guy
MemberAre you making sure you're uploading the proper sized image? If you're uploading an image that's too large then yes, it'll crop it.
wp guy
MemberGo into your Genesis settings and make sure the logo dropdown is on "image" and not "text."
wp guy
MemberTry installing either Akismet or Bad Behavior.
wp guy
MemberLooks like this is the culprit:
#wrap {
background: url(images/bg.png) repeat-x;
} -
AuthorPosts