Forum Replies Created
-
AuthorPosts
-
Stensson
MemberPerhaps these links can be helpful.
Stensson
MemberIf you set the height and width of your logo in functions.php it won't be cropped, but you may need to modify your theme's CSS.
Stensson
MemberYou can increase the header size in functions.php
//* Add support for custom header
add_theme_support( 'custom-header', array(
'width' => 320,
'height' => 60,
'header-selector' => '.site-title a',
'header-text' => false
) );Stensson
Memberhttp://www.wpbeginner.com/wp-themes/how-to-style-wordpress-navigation-menus/
.genesis-nav-menu .home {
background: #FF0000;
}February 9, 2014 at 3:16 am in reply to: LifeStyle Pro – how can I change the width of the main content #89459Stensson
Member.content {
float: right;
width: 700px;
}January 24, 2014 at 3:18 am in reply to: Tired of Hostgator hopeless service, any alternative (no affiliates please) #86774Stensson
MemberI gave you an honest answer to your question, moron.
January 23, 2014 at 9:33 am in reply to: Tired of Hostgator hopeless service, any alternative (no affiliates please) #86640Stensson
MemberI've used Pair for hosting for about eight years. Great uptime and excellent support, highly recommended.
http://www.pair.com/Stensson
MemberThis might be of help:
Stensson
MemberImages of exactly 260 ?— 100 pixels will give the best results according to Theme Setup
Stensson
MemberThe problem Martin79 reported has apparently been fixed!
Stensson
MemberYou're welcome Lisa!
Stensson
MemberI'm glad I could help.
Hey, I don’t want to take up too much more of your time, but I wondered – is the black box behind the menu an image? I want to make the text black and remove the thick black background to the menu. Suspect this is simple, but have been hunting for a while and can’t seem to find it!
It's all about css.
/*
04 Menus
---------------------------------------------------------------------------------------------------- */.genesis-nav-menu {
overflow: hidden;
}.menu-secondary,
#header .genesis-nav-menu {
float: right;
width: auto;
}#header .genesis-nav-menu {
float: left;
margin-top: 15px;
margin-top: 2rem;
width: auto;
}.genesis-nav-menu.menu-primary {
background-color: #fff;
}.genesis-nav-menu ul {
float: right;
width: 100%;
}.genesis-nav-menu li {
display: inline-block;
float: right;
list-style-type: none;
text-align: left;
}.genesis-nav-menu a {
display: block;
padding: 16px 20px 14px;
padding: 1rem 1.25rem 0.875rem;
position: relative;
color: #000;
}.genesis-nav-menu.menu-secondary a {
padding: 12px 16px;
padding: 0.75rem 1rem;
}.genesis-nav-menu .current-menu-item a,
.genesis-nav-menu li a:hover,
.genesis-nav-menu li:hover a {
background-color: #f96e5b;
}.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited {
background-color: #333;
padding: 16px 20px 14px;
padding: 1rem 1.25rem 0.875rem;
position: relative;
width: 120px;
}.genesis-nav-menu.menu-secondary li li a,
.genesis-nav-menu.menu-secondary li li a:link,
.genesis-nav-menu.menu-secondary li li a:visited {
padding: 12px 16px;
padding: 0.75rem 1rem;
width: 140px;
}.genesis-nav-menu li li a:hover {
background-color: #f96e5b;
}.genesis-nav-menu li ul {
left: -9999px;
position: absolute;
width: 160px;
z-index: 99;
}.genesis-nav-menu.menu-secondary li ul {
width: 132px;
}.genesis-nav-menu li ul ul {
margin: -42px 0 0 159px;
}.genesis-nav-menu.menu-secondary li ul ul {
margin: -36px 0 0 171px;
}.genesis-nav-menu li:hover ul ul,
.genesis-nav-menu li.sfHover ul ul {
left: -9999px;
}.genesis-nav-menu li:hover,
.genesis-nav-menu li.sfHover {
position: static;
}ul.genesis-nav-menu li:hover>ul,
ul.genesis-nav-menu li.sfHover ul,
#header .genesis-nav-menu li:hover>ul,
#header .genesis-nav-menu li.sfHover ul {
left: auto;
}.genesis-nav-menu li a .sf-sub-indicator,
.genesis-nav-menu li li a .sf-sub-indicator,
.genesis-nav-menu li li li a .sf-sub-indicator {
position: absolute;
text-indent: -9999px;
}#wpadminbar li:hover ul ul {
left: 0;
}Cheers,
JonasStensson
MemberCopy the code directly from github, it should work.
Cheers,
JonasStensson
MemberIt should work. What happens If you unregister primary navigation menu?
//* Unregister primary navigation menu
add_theme_support( 'genesis-menus', array( 'secondary' => __( 'Secondary Navigation Menu', 'genesis' ) ) );/Jonas
Stensson
MemberAdd to functions.php
/* Reposition the primary navigation menu
remove_action( 'genesis_after_header', 'genesis_do_nav' );
add_action( 'genesis_before_header', 'genesis_do_nav' );/Jonas
-
AuthorPosts