• Resolved robpachasa

    (@robpachasa)


    how would i go about styling the widgets displayed? On my page it looks very un-styled (and kind of poopy).

    i tried adding “disc” to the li options, and it changed the titles of the widget and over-wrote my theme completley (now other lists have the circle too, which i don’t want.

    so how would i h3 the titles, and add “disc” to ONLY the page i’m using the plugin on?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ucc_tina

    (@ucc_tina)

    change the line in 148
    echo '<ul class="ul-addw2p ul-'.$title.'">'."\n";
    to
    echo '<h3 class="ul-addw2p ul-'.$title.'">'."\n";

    and change line 152
    echo "</ul>\n";
    to
    echo "</h3>\n";

    thinking about putting a style option…

    Plugin Author ucc_tina

    (@ucc_tina)

    never mind.
    the above was not true..
    (didnt check it before doing it sorry)

    this will work

    change line 171-172

    'before_title' => '',
    'after_title' => '',

    to

    'before_title' => '<h3>',
    'after_title' => '</h3>',

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Add Widgets To Page] How to style?’ is closed to new replies.