• I am having a problem with RedLine. I created a custom banner with a logo. In the Header section, the banner is up, looks great.
    I selected NO for displaying the header text.
    That works fine in FireFox, but in IE, the header text displays, and I cannot figure out how to turn it off.
    In viewing source, there’s a line:
    #blog_header a { color:#blank; }

    that looks like they’re just setting the color of the text to transparent, but that is not working.

    I have some knowledge of programming, but I am not familiar with php. Even if i could set the value of that variable to an empty value, it would be fine.
    Appreciate any help.

Viewing 2 replies - 1 through 2 (of 2 total)
  • there is caused by a less-than-perfect use of the custom header code in /redline/library/functions/funtions.php (line 219):

    #blog_header a { color:#<?php header_textcolor();?>; }

    if you don’t want header text at all, then you could try to overwrite the output by adding something like this to style.css of your theme:

    #blog_header a { visibility: hidden!important; }

    (untested)

    Tested on I.E. 8. It works!

    In styles.css I added

    visibility: hidden!important;

    into this code block:

    #blog_header a { font-size: 48px; line-height: 1.5em; font-weight: bold; text-align: center; font-family: “Trebuchet MS”, “DejaVu Sans Serif”, sans-serif; margin: 0 5px; color: transparent; text-decoration: none; }

    to have header text remain hidden in IE.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘RedLine Theme Header Problem’ is closed to new replies.