• Resolved hurra03

    (@hurra03)


    I have an extra side bar o my site:

    http://alteregovoices.com/aboutme/

    In which I would like the list to be bulletted. I have used this code in the text widget:
    These are the sort of voice-overs I am involved in daily:

    <ul TYPE="square">
    
    <li>TV and Radio Adverts
    </li>
    <li>Telephone messages, prompts and IVR.

    but lines are appearing instead of the bullets.

    Thank you,

    hurra03

Viewing 15 replies - 1 through 15 (of 16 total)
  • Hello,

    Actually, your syntax is wrong…

    http://www.w3schools.com/cssref/pr_list-style-type.asp

    Hope it helps πŸ™‚

    Thread Starter hurra03

    (@hurra03)

    Thanks ellp – Tried that (in the child style sheet), but the items are still just appearing as underlined, rather than bulleted.

    <ul>

    <li>TV and Radio Adverts

    <li> Video Games

    </ul>

    Theme Author nobita

    (@nobita)

    Hi hurra03

    Tried that (in the child style sheet), but the items are still just appearing as underlined, rather than bulleted.

    Please indicate the style rules written in the style sheet of the child theme

    note
    Put code in between backticks.

    Thank you

    Thread Starter hurra03

    (@hurra03)

    Here you go:

    /* Remove Recent Posts text*/
    #raindrops-recent-posts{
     display:none!important;
    }
    
    /* Top Right Text*/
    #site-description {
    font-size: 18px;
     padding-top: 20px;
    width: 690px;
    font-family: Lucida Calligraphy;
    }
    
    /*Page Titles*/
    .entry-title span{
    font-size:25px;
    font-family: Verdana;
    }
    
    /* Start Custom Styles for header 2*/
    
    .hentry .entry-content h2{
    /*color:red;*/
    font-size:15px;
    font-family:verdana;
    font-weight:700
    }
    /* End Custom Styles */
    Theme Author nobita

    (@nobita)

    Please add your dhild themes style.css

    For Example
    Bullets Image

    /*.lsidebar > ul > li > ul,      when needs defalt sidebar */
    .rsidebar > ul > li > ul{
        list-style-image: url("../raindrops/images/next.png");
        margin-left:26px;
    }

    Bullets Markers

    .rsidebar > ul > li > ul > li{
        list-style:square;
        margin-left:26px;
    }
    .rsidebar > ul > li > ul > li a{
        margin-left:-16px;
    }

    Thank you.

    Thread Starter hurra03

    (@hurra03)

    No- still not appearing

    Theme Author nobita

    (@nobita)

    I’m checked your WEBSite

    http://alteregovoices.com/

    How to insert CUSTOM CSS ? Plugin

    It is a cause CSS style rules because it is html escaped, style can not work effectively

    Thank you.

    Thread Starter hurra03

    (@hurra03)

    What does html escaped mean?

    Theme Author nobita

    (@nobita)

    Thread Starter hurra03

    (@hurra03)

    OK – so does this mean this is not a theme error (feature), but a problem with the plugin?

    Theme Author nobita

    (@nobita)

    I have to say after confirming the operation in my theme at least.
    I have a question on the result of the output of the plug-in, but I can not it to answer whether or not a matter of plug-in.

    Whether the problem of non-theme, be determined on its own is required.

    Thread Starter hurra03

    (@hurra03)

    Hi – I have removed the plug in and created a traditional child style.css on my server, with the following in the header:

    /*
    Theme Name: Raindrops
    Theme URI: http://example.com/
    Description: Child theme for the Raindrops theme
    Author: xxx
    Author URI: http://example.com/about/
    Template: raindrops
    Version: 0.1.0
    */

    <a href='http://profiles.wordpress.org/import' class='mention'>@import</a> url(&quot;../raindrops/style.css&quot;);

    I think I’m missing the them URI (don’t know wjere to find it)…and also in raindrops do I have to do the import?

    thanks for your ongoing help!

    Theme Author nobita

    (@nobita)

    CSS @import rule no need.

    Thank you.

    Thread Starter hurra03

    (@hurra03)

    ho hum….my website still can’t see this child theme. This is what I have in the header now:

    /*
    Theme Name: raindrops
    Author: hurra03
    Author URI: http://alteregovoices.com
    Version: 0.1
    Template:raindrops
    */

    but none of the changes are being picked up.

    Theme Author nobita

    (@nobita)

    You do not seem to be applied to create a child theme correctly

    I have confirmed that the parent theme is used Check your site

    The creation method of a Child Theme

    Child theme name:mysite

    Creation of – theme holder
    wp-content/themes/mysite
    Creation of – stylesheet

    style.css is created in the
    wp-content/themes/mysite/style.css
    The contents are as follows.
    Creation of a style sheet
    style.css

    /*
    Theme Name: mysite
    Author: Your name
    Author URI: http://yoursite.com
    Version: 0.1
    Template:raindrops
    */

    Usually, when making a チャむルド theme, it is explained that the style of a parent theme is imported as follows, but in rained Rops, it is unnecessary.
    the child theme is detected and it imports automatically.

    /* Raindrops No need import rules like below*/
    @import url('../twentyten/style.css');

    make file functions.php
    ver1.200 ~

    <?php
    
    add_action( 'switch_theme', 'puddle_uninstall' );
    
    function puddle_uninstall(){
    
        delete_option("raindrops_theme_settings");
    }
    ?>

    This description is intended to use in a child theme, and change settings of Raindrops, if you uninstall, delete the configuration changes of the parent theme.
    If you did not delete, you may be when you install the new Raindrops, correct, it is not displayed by default.

    Finish.

    and activate child theme.

    Thank you.

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Bullets in Extra Side Bar’ is closed to new replies.