Community Forums › Forums › Archived Forums › Design Tips and Tricks › Mindstream Theme Header and Title
Tagged: color, header, mainstream, text, title
- This topic has 6 replies, 3 voices, and was last updated 11 years, 12 months ago by
asterbird.
-
AuthorPosts
-
January 25, 2014 at 11:46 pm #87043
FutureExpat
ParticipantHi, I was going to append this to an open topic, but it got closed. . .
I've figured out how to add a tagline to the Mindstream header, but am at a loss how to style/space/pad it properly. Ideally what I'd like is to expand the black background to include both the title and the tagline on separate lines, but I'd settle for having the tagline show up below the black background. Right now they're overlapping. . .
Thanks,
http://courageousquesting.com
SusannaJanuary 26, 2014 at 6:21 am #87067Davinder Singh Kainth
MemberBack background isn't spreading because it is a small gradient image (http://courageousquesting.com/wordpress/wp-content/themes/mindstream/images/gradient.png).
Solutions:
1. Use black color code instead of image. Look for following code in style.css file/* Header
------------------------------------------------------------ */#header {
background: url(images/gradient.png) top repeat-x;
margin: 0 auto;
min-height: 100px;
overflow: hidden;
text-transform: uppercase;
width: 100%;
}and change it to
#header {
background: #444;
margin: 0 auto;
min-height: 100px;
overflow: hidden;
text-transform: uppercase;
width: 100%;
}2. Use bigger size gradient image.
3. You can change background line in above code to:
background: url(images/gradient.png);
This will repeat gradient image vertically and horizontally but may appear blocky.
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesJanuary 27, 2014 at 1:20 pm #87272FutureExpat
ParticipantThanks, I'll give that a try.
January 27, 2014 at 2:09 pm #87281FutureExpat
ParticipantOK, it sort of worked. I ended up with no background, but actually decided I like it better. Just out of curiosity, any ideas on why the black background disappeared? Here's the code I substituted:
#header {
background: 444;
margin: 0 auto;
min-height: 100px;
overflow: hidden;
text-transform: uppercase;
width: 100%;January 27, 2014 at 4:55 pm #87319asterbird
Memberlooks like the difference is a pound sign. To have a color show up, you have to have a
#just before it:Correct:
#header { background: #444; }Incorrect:
#header { background: 444; }January 27, 2014 at 6:25 pm #87343FutureExpat
ParticipantThanks. That's why we sometimes need other eyes to look at things -- hard to see when we get sloppy ourselves.
Susanna
January 27, 2014 at 6:28 pm #87344asterbird
MemberYup, Susanna! I've been there. Couldn't figure out for the life of me why a color wasn't showing up 🙂 The crazy pound sign, of course. You can mark this topic resolved, if you got what you need 🙂
-
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.