• Resolved kaskagie

    (@kaskagie)


    Hi everyone!
    I have made a page based on wordpress using Fyre theme. I added some shortcodes to the page and they are working, but not everywhere. Here is an example:
    https://www.hovawart.in/pl/2016/?cat=13 (first news from the top)
    and when you open the single post the shortcode doesn’t work:
    https://www.hovawart.in/pl/wystawa-w-bydgoszczy/

    Function of rolling up and down is working but the styles (frame, colors) not.

    Does anyone has idea what is wrong?

    Thanks in advance for any solutions.

Viewing 4 replies - 1 through 4 (of 4 total)
  • juslooken

    (@juslooken)

    The plugin is working but the styles are not, this is because the border is being created by the following CSS

    #content section #toggle-view li {
        background: #fff none repeat scroll 0 0;
        border: 4px solid #efefef;
        border-radius: 5px;
        cursor: pointer;
        list-style: outside none none;
        margin: 15px 0;
        padding: 8px 15px 8px 22px;
        position: relative;
    }

    however on the https://www.hovawart.in/pl/wystawa-w-bydgoszczy/ page, there is no ‘section’ so the style is not working. My suggestion would be to change the css as follows which should work.

    #toggle-view li {
        background: #fff none repeat scroll 0 0;
        border: 4px solid #efefef;
        border-radius: 5px;
        cursor: pointer;
        list-style: outside none none;
        margin: 15px 0;
        padding: 8px 15px 8px 22px;
        position: relative;
    }
    Thread Starter kaskagie

    (@kaskagie)

    It works! Thank you very much!
    Topic can be closed.

    juslooken

    (@juslooken)

    Glad to help. Just tick the ‘Mark this topic as resolved’ to close it off.

    ??

    Thread Starter kaskagie

    (@kaskagie)

    OK ?? That was my first topic on forum, most of the times search across the forum helped. Thanks once again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Shortcode problem’ is closed to new replies.