• Resolved kshapiro

    (@kshapiro)


    I was looking through the files and cannot seem to find where I could move the > that is in front of the title. I’d like it to be positioned to the right of the title and not the left of the title. I looked at the synved-shortcode.php under the directory synved-shortcode (and many others) but cannot find where I can switch the order of these.

    span of ui-icon ui-icon-triangle-1-s
    and the a href of the title. I’d like them reversed.

    Thank you!

    http://wordpress.org/extend/plugins/synved-shortcodes/

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

    (@synved)

    This is controlled by jQuery UI and not directly by the plugin but you can probably use some custom CSS, try with this:

    .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
      left: auto;
      right: 0.5em;
    }
    Thread Starter kshapiro

    (@kshapiro)

    Thanks. That didn’t work. Is there a way I could send you the link via pm? Might help, might not…

    Plugin Author Synved

    (@synved)

    Hum maybe depends on different jQuery versions. Try this:

    .ui-accordion .ui-accordion-header .ui-icon {
      position: absolute;
      left: auto;
      right: 0.5em;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Section – Accordion image placement to the right instead of left’ is closed to new replies.