I need to reduce the size of the header image.
-
Hi Designsimply
I’m still waiting to hear back from you regarding a few issue with the stylesheet. Let me ask the questions again one more time.
1) The top “Navigation” is now back on top of my header image instead of above the solid line. How can I push it down?
2) All of my images that has no caption showing a dotted line underneath them. I tried .hentry img, .hentry image a, and try to assign border-bottom: none; to them but they don’t work. How can I successfully get rid of them?
3) The “meta” underneath the header h1 seems to have too much line-height but I can seem to find the class to close the gap. I tried .content .post-meta, .content .post-meta a and of course they didn’t work.
Thanks
-
I’m still waiting to hear back from you regarding a few issue with the stylesheet. Let me ask the questions again one more time.
There are several other people waiting too! I’ll be back around to help soon, I promise.
-
-
1) The top navigation: You fixed this for me before but now it becomes an issue again. The “Navigation” is now back on top of my header image instead of above the solid line. How can I push it down?
Based on the current setup and custom CSS you already have in place, I think you could move the navigation menu a little lower like this:
#nav { right: 23px; margin: -25px; } -
2) All of my images that has no caption showing a dotted line underneath them. I tried .hentry img, .hentry image a, and try to assign border-bottom: none; to them but they don’t work. How can I successfully get rid of them?
The dotted line you’re referring to is set in the theme using the “.content a” selector. You can turn it off with the following CSS. Note this will affect all links in the main content area, not just images.
.content a { border-bottom: none; } -
3) The “meta” underneath the header h1 seems to have too much line-height but I can seem to find the class to close the gap. I tried .content .post-meta, .content .post-meta a and of course they didn’t work.
You need to add display: block to get it to work. Try this:
.post-meta { display: block; line-height: 1.5em; }
- The topic ‘I need to reduce the size of the header image.’ is closed to new replies.