Forum Replies Created
-
AuthorPosts
-
Krista
MemberI just realized that if you uploaded the header with the Customizer, rather than with CSS, then your image needs to be the exact size specified. Otherwise it will crop it for you.
Krista
MemberHi,
Line 874 of your stylesheet:
.site-header .wrap{
padding: 40px 0;
}This is adding a large amount of space to the top and bottom of the header. Change the 40px to something less, or even remove it all together if you want.
Also your logo is getting cut off. You might consider a smaller logo possibly? Yours is quite a bit larger than the example you posted. If you decide that you do not want to then you need to change this in your stylesheet.
Line 902 of your stylesheet:
.header-image .site-title > a
min-height is set to 60px. Change it to 70px and your logos top and bottom won't be cut off.
Hope this helps!
July 10, 2014 at 5:01 pm in reply to: Magazine theme hover to sub menu does not show anything #113827Krista
MemberDo you have a link? It's hard to tell with a screenshot, but one possibility to check is the font colour on the sub menu. Make sure it isn't the same colour as your background. Again, to fully help you better a link to the site would be better.
🙂
July 10, 2014 at 4:58 pm in reply to: How to make green footer shorter Going Green Pro Theme #113826Krista
MemberYour site is on maintenance mode, which makes it very difficult to help.
July 10, 2014 at 4:27 pm in reply to: how to add search in the navigation menu to the right of menu items #113824Krista
MemberThis tutorial should help:
Adding Search Form and Simple Social Icons to Primary Navigation in Genesis
Krista
MemberHi Ian,
You would have to add support for custom header in your function.php file:
//* Add support for custom header
add_theme_support( 'custom-header', array(
'header_image' => '',
'header-selector' => '.site-title a',
'header-text' => false,
'height' => 100,
'width' => 200,
) );You would change the height and width to your own dimensions, and change a few bits of CSS to make it work.
The reasoning for Swank using this method is to add the logo to the background to keep it responsive.
Hope this helps!
Krista
MemberHi Jared,
Find this in your CSS stylesheet:
.header-image .site-header .wrap {
background: url(images/regularlogo.png) no-repeat;
margin: 0 auto;
padding: 0;
text-align: center;
}Replace it with:
.header-image .site-header .wrap {
background: url(images/regularlogo.png) no-repeat center;
margin: 0 auto;
padding: 0;
}You are removing the text-align: center; and adding center to the background.
That should do the trick!
Krista
MemberOn my end I am seeing your header in Safari, Firefox, and Chrome.
Krista
MemberIt looks like you figured it out!
Krista
MemberHere are a few links:
http://dreamwhisperdesigns.com/genesis-tutorials/change-default-genesis-favicon/
http://htwp2.com/change-default-genesis-favicon/
Good luck!
Krista
MemberIt looks like you have a widget area above the navigation? The colour is set to #333 so it's the same colour as your background but the h4 title reads "Custom Me" Use Firebug to target that area and you will see. If your remove this then it should remove the space above your navigation and look like the example you gave.
Krista
MemberThis reply has been marked as private.Krista
MemberGreat job! It looks really good.
Krista
MemberI've used BigCommerce and was told it was the best for my online shop. The coding was very old school and heavy I found, they used tables for everything. If I did it over again I would try a Genesis site with WooCommerce. Just my two cents.
Krista
MemberCan anyone help? I'd really appreciate it…. 🙂
Krista
MemberYes, I was wondering where to I put the code? I should've been more clear. I'm using Prose Theme.
Krista
MemberI wish I fully understood this, but I don't 🙂
I get how to register a new widget. Is there any links on how to create my own page template? Couldn't I just use one of the existing ones? I have Prose.
Krista
MemberI do have the Carousel. My partner with this website wants just a slideshow gallery and lightbox when you open the page to the portfolio and not a grid of thumbnails. Is there a way I can do that?
Krista
MemberThanks Brad! That is just what I was looking for....
Krista
MemberThe problem is I've tried to add custom support and tried the Simple Header plugin. It still crops my header image to 980 by 150.
-
AuthorPosts