• there`s a frame/border around the default headers. How do I get that away? I cannot find anything. All other headers function is marvelously.

Viewing 1 replies (of 1 total)
  • peterjhpark

    (@peterjhpark)

    That’s because your style.css for your theme probably has a default bordering around images. What you need to do is to create another img css to govern the header images. Add the below code to style.css

    img.noborder {border: 0px; padding:0px; }

    Then in your dynamic headers plugin folder, edit custom-header.php. Add class=”noborder” to the img tag below.

    echo '<img class="noborder" src="'.$dhnd_image_url_base.$load_this_media.'" alt="'.$dhnd_alt_tag.'" title="'.$dhnd_alt_tag.'" />';

Viewing 1 replies (of 1 total)
  • The topic ‘Dynamic Headers – border around default headers’ is closed to new replies.