• Resolved secampbell

    (@secampbell)


    Hello, I’m using the Delicate theme (latest version updated – 3.5.5) for a site (topmarketer99.com). The problem I’m having has to do with the green arrows that have replaced the formerly black round bullets (discs) that were rendered in a previous version of the theme. The green arrows are not attractive to me. So here’s what I’ve done – I’ve set up a child theme and checked that it’s working. The problem is that I cannot find the specific code in the editor area to change the green arrows to the discs. I’ve picked out some relevant code (related to the list bullets I would think) in the style sheet. But playing around in there hasn’t produced the results that I want. Perhaps I haven’t changed the right code. Below is the selected code I’ve pulled from the css. Can someone please
    advise what code (specifically) I need to put in the child theme to produce disc bullets? The child theme code style css is below the double lines below. Thanks for your help in advance! ~Scott

    ul {
      list-style-type: disc;
    }
    li {
      list-style-type: disc;
    }
    
    /* =Begin Lists
    -------------------------------------------------------------- */
    html > body .entry ul {
    	margin-left: 0px;
    	padding: 0 0 0 30px;
    	list-style: none;
    	padding-left: 10px;
    	text-indent: 0px;
    }
    html > body .entry li {
    	margin: 7px 0 8px 10px;
    }
    
    .postmetadata ul,
    .postmetadata li {
    	display: inline;
    	list-style-type: none;
    	list-style-image: none;
    }
    
    html > body .entry ul li,
    ul.bullet-1 li,
    ul.bullet-2 li,
    ul.bullet-3 li,
    ul.bullet-4 li,
    ul.bullet-5 li,
    ul.bullet-6 li {
    	list-style-image: none;
    	list-style-position: outside;
    	list-style-type: none;
    	margin-bottom: 5px !important;
    	padding-bottom: 3px !important;
    	padding-left: 22px !important;
    }
    ul.bullet-1 li {
    	background: url(images/bullets/3.gif) no-repeat 0 5px;
    }
    ul.bullet-2 li {
    	background: url(images/bullets/4.gif) no-repeat 0 5px;
    }
    ul.bullet-3 li {
    	background: url(images/bullets/1.gif) no-repeat 0 5px;
    }
    ul.bullet-4 li {
    	background: url(images/bullets/2.gif) no-repeat 0 5px;
    }
    html > body .entry ul li,
    ul.bullet-5 li {
    	background: url(images/bullets/5.gif) no-repeat 0 5px;
    }
    ul.bullet-6 li {
    	background: url(images/bullets/6.gif) no-repeat 0 5px;
    }
    
    =============================
    
    /*
    ------------------------------------------------------------------------
    Theme Name: delicate-child
    Description: Child theme for the Delicate theme.
    Author: Scott Campbell
    Template: delicate
    */
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Problem with list bullets’ is closed to new replies.