Community Forums › Forums › Archived Forums › Design Tips and Tricks › customization of 24k theme
Tagged: 24k theme, css, customization, hover
- This topic has 7 replies, 4 voices, and was last updated 11 years, 10 months ago by moeblis.
-
AuthorPosts
-
March 19, 2013 at 10:33 pm #29588moeblisMember
Hello!
Wondering if someone can help me make some minor tweaks to my site - vanloonenterprises.com (password to view is: password). I'm using the free 24k theme and have made some slight adjustments, but need a little more help.
Any help in this direction would be amazing!
1. Currently when I hover over my logo on the top, the area becomes blue. Can I make it so when I hover there is no color change or overlay?
2. Is there a way to make the post titles not be all caps?
3. As far as the menu goes, when I hover it is now blue - the way that I want it. However, the text is hard to read. I'd like to make the menu text white when I hover. This happens for all other hover items within the posts but not for the menu. How can I do this?
4. I'd like to center my menu items. Currently they are left aligned. How do I do this?Thanks you so much!
MonikaMarch 19, 2013 at 10:36 pm #29589moeblisMemberalso, I'm using this theme:
March 26, 2013 at 9:28 am #31323Jon BellahMemberCould you please post a link to your site? It's much easier to give specific help.
Thanks!
Follow me on the Twitters at @JonBellah. I blog about web design, development and a lot about Genesis at CSSForge.com
March 26, 2013 at 9:30 am #31324Megan GrayMemberHe did. It's: http://vanloonenterprises.com/ and the password is...password. 🙂
March 26, 2013 at 9:44 am #31327Jon BellahMemberWhoa, clearly I can't read. Sorry about that.
1. Add this to your CSS:
#title a:hover {
background: none;
}
2. In your CSS find:
.page h1,
.post h2 a,
.post h2 a:visited {
border-bottom: none;
color: #fff;
display: block;
font-size: 40px;
line-height: 40px;
text-transform: uppercase;
}
And remove the text-transform:uppercase; part.
3. In your CSS find:
#subnav li a:hover,
#subnav li a:active,
#subnav li:hover a,
#subnav .current_page_item a,
#subnav .current-cat a,
#subnav .current-menu-item a {
color: #222;
}
And change color: #222; to color: #fff;
4. I'm going to have to play around with this one... I'll let you know when I get an easy solution.
Follow me on the Twitters at @JonBellah. I blog about web design, development and a lot about Genesis at CSSForge.com
March 26, 2013 at 9:45 am #31328ameekerMemberThese changes will be made to your stylesheet.css file, or if you're using JetPack, you can add them to the custom.css
To get rid of the blue background when hovering over the title:
.header-full-width #title-area a:hover {
background: none;
}To change the titles from uppercase to normal, find:
.page h1, .post h2 a, .post h2 a:visited
and remove
text-transform: uppercase;To change the menu colors (I think I caught all of these)... you'll have to find this:
#subnav li a:hover, #subnav li a:active, #subnav li:hover a, #subnav .current_page_item a, #subnav .current-cat a, #subnav .current-menu-item a { color: #222; }
and change it to this:
#subnav li a:active, #subnav .current_page_item a, #subnav .current-cat a, #subnav .current-menu-item a { color: #222; }
#subnav li a:hover, #subnav li:hover a { color: #fff; }
And then probably you'll also want to make this change, too, so that the dropdown items are white instead of the darker color.
#subnav li li a, #subnav li li a:link, #subnav li li a:visited { background-color: #4978bc; border: 1px solid #fddf71; border-top-width: 0; color: #fff; font-size: 11px; padding: 5px 10px; position: relative; width: 128px; }
Give me another minute and I'll have the menu centering.
Looking for Genesis website design backed by strategy? http://www.angiemeekerdesigns.com
March 26, 2013 at 9:57 am #31332Jon BellahMemberSo the easiest way to get the menu to center, is to add this to your CSS:
#subnav .wrap {
width: 835px;
margin: 0 auto;
}
Note: The 835px is the current width of your menu. If you add any menu items, you'll want to readjust.
Sort of a hacky way of doing it, but it works.
Follow me on the Twitters at @JonBellah. I blog about web design, development and a lot about Genesis at CSSForge.com
March 26, 2013 at 4:38 pm #31426moeblisMemberThank you SO MUCH for your help you guys! Amazing. Kuddos all around!
Monika
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.