Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Artilabio

    (@nur-art)

    If I leave all without css it’s nice for my template but a black point appear on the left side of the page near the space of the header..
    🙁

    I had the same problem.. did you solve it?

    I did it somehow with adding div to user.css (it’s the override css in my theme, depends which theme you use… find the css your theme uses)

    “name div as you want” and add the important part to it: “list-style: none”

    this is how my custom div for custom widget area looks like:

    #header-center { list-style: none; margin: 27px; padding-left: 177px; font-size: 17px; border: none; border-spacing:0; line-height: 0px; color: #777777; float: left; width:auto; height: auto; }

    then when you add “custom widget template tag” to theme, put it in your custom div.

    <div id="header-center">
    	<?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Header Widget Area')) : ?>
    	<?php endif; ?>	</div><!-- #header-center -->

    I’m not an expert, but still hope it helps.

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Custom Widget Area] Where to add widget header css’ is closed to new replies.