• Resolved Kerstey

    (@kerstey)


    There’s a part of my theme’s stylesheet which is interferring with the “previous” and “next” buttons and is displaying bullets.

    I’ve found that if I change the following:

    #content .post ul li, #content .page ul li {
    	list-style-type: square;
    	margin: 0 0 0 20px;
    	padding: 0;
    	}

    and change the “square” to “none” then it gets rid of them, but then doesn’t allow bullets anywhere else on the pages that use lists.

    Can anyone suggest how I can solve this please?

    https://www.ads-software.com/extend/plugins/my-calendar/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    In your My Calendar stylesheet, you’ll find a style

    .mc-main .my-calendar-nav ul {
    height: 2em;
    list-style-type:none;
    margin:0 auto;
    padding:0;
    }

    Change that to

    .mc-main .my-calendar-nav ul {
    height: 2em;
    list-style-type:none!important;
    margin:0 auto;
    padding:0;
    }

    Your theme’s style is set at a higher specificity than My Calendar’s so you need to increase the specificy on the My Calendar styles.

    Thread Starter Kerstey

    (@kerstey)

    This sounds like it should do the trick, but for some reason, it’s not saving the changes I’m making to the stylesheet through wordpress – it keeps reverting back after I press save.

    So I created a new stylesheet with all the same styles as well as this change and uploaded it – selected it, but it’s not working and still showing the bullets.

    ???

    Plugin Author Joe Dolson

    (@joedolson)

    First, there is a design (usability) error in the layout for the stylesheet switcher in My Calendar – did you hit the “Choose Style” button, or the “Save Changes” button? This is totally my fault – but “Save Changes” will *not* change the stylesheet.

    I messed up the positioning of those buttons in the current version, which causes some confusion there.

    That doesn’t explain why your changes aren’t saving — that could be a file permissions issue, however. If your files aren’t writable, there could be a problem there.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: My Calendar] Theme list style interferring with prev/next nav’ is closed to new replies.