Forum Replies Created
-
AuthorPosts
-
JenORoss
ParticipantI will take you up on the challenge too! I learned SOOO much through the old forums and I really value this as a place to learn and share our knowledge. I hope this community grows into the same sort of knowledge-base like the old forums. If I see a question that I know I can answer, I will certainly do so!
I’m taking up The Challenge! ~ Help me answer some of the Unanswered Posts.
August 14, 2013 at 3:02 pm in reply to: Modern Portfolio: Link Hovering Color & "About" Background Image #56401JenORoss
ParticipantHey there! For the links in the "services" widget (and "about" widget for that matter since they both have the same issue) you can add the following to your style.css:
Around line 216 you will find:`a.cta-button,
a.landing-button,
a.social-buttons,
button,
input[type="button"],
input[type="submit"],
.btn,
.enews,
.footer-widgets,
.footer-widgets a:hover,
.genesis-nav-menu li a:hover,
.genesis-nav-menu li li a:hover,
.genesis-nav-menu .highlight-menu-item a,
.genesis-nav-menu .highlight-menu-item a:hover,
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled,
#about,
#services {
color: #fff;
}`You can put this on it's own line after that section, or include it in the section above before the {
#about a:hover, #services a:hover { color: #fff; }
Please note that you will need to add
!important
in the section just below all this to keep your cta button hover from turning white as well.a.cta-button:hover, a.social-buttons:hover, .sidebar .enews-widget input:hover[type="submit"] { color: #222 !important; }
For the second question... To add a background image to the "About" widget area, look for this section around line 562 in the Homepage section of your style.css:
#about, #services { background-color: #222; }
Replace this line:
background-color: #222;
with this line
background: url(images/your-image-url.png) no-repeat center left !important;
Of course you could also put an image in a widget of that section via a variety of methods, however I think you were asking about the actual background of that area that rund the length of the screen.
Hope that helps! 🙂
Jennifer
I’m taking up The Challenge! ~ Help me answer some of the Unanswered Posts.
-
AuthorPosts