Hi Dave,
After installing the skin I see that there is a small vertical line in the header area. On my site is just above the "a" in Japan at http://thejapanobserver.com. How can I get rid of this or is there something wrong on my side?
Tim
Hi Dave,
After installing the skin I see that there is a small vertical line in the header area. On my site is just above the "a" in Japan at http://thejapanobserver.com. How can I get rid of this or is there something wrong on my side?
Tim
Dave,
I am thinking this is part of that vertical line separating your original logo and the tag line. It seems to be in the same position as that.
Tim
Hi Dave,
I think I have confirmed that the small line is definitely in the same place as the vertical line in your original logo. I found this out by playing around with showing the tagline. In the general settings for WordPress, there is a place to entire your blog title and tag line. I like this because it then shows up in then shows up in the Document Head (as long as you set it up that way in the Thesis settings).
My problem, in addition to getting rid of that little line, is how to NOT show the tag line in the header yet show it in the Document Head. Presently, as you can see (http://thejapanobserver.com) I have the tag line showing up beneath my logo.
Looking forward to your help.
Regards,
Tim
Hi Tim. To remove the tagline and the vertical line to its left, you need to remove the line of code in the custom_functions.php file that begins: <p id="tagline">whatever is between</p>
The vertical line is styled in the CSS document, so removing the code (which you don't need) will remove the text and the line. The head of the document is not affected by this change.
Let me know if you need any help sorting this out.
Dave
Hi Dave.
Thanks for the reply. I did as told and this took care of the Osmotic tagline showing up. Unfortunately, the small line is still there. Take a look at the site: http://thejapanobserver.com. Further advice?
Thanks,
Tim
Hi again Dave,
I have fixed the problem. Went into the custom file editor (custom/custom.css) and saw (A) below. I changed this to (B). In other words, I changed the border from 1px to 0px. This did the trick. Not sure if the time lag between my questions and my answers is intentional, but it is serving to get me to do these things myself which isn't a bad thing. :)
Regards,
Tim
(A)
#tagline {
border-left: 1px solid #1b1c1a;
padding: 3px 15px;
font-style: italic;
position: absolute;
top: 5px;
left: 145px;
font-size: 12px;
}
(B)
#tagline {
border-left: 0px solid #1b1c1a;
padding: 3px 15px;
font-style: italic;
position: absolute;
top: 5px;
left: 145px;
font-size: 12px;
}
That'll work too!
This topic has been closed to new replies.