• Resolved MickeyRoush

    (@mickeyroush)


    In case anyone’s interested in making the following responsive:

    You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b>
    <blockquote cite=""> <cite> <code><del datetime=""> <em> <i> <q cite=""> <strike> <strong></strong></em></code>

    Add this to your child theme’s style.css:

    #respond .form-allowed-tags {width: 100%;}

    It should make it responsive like the rest of the theme.

    Or per Emil’s recommendation you can remove it with this:

    #respond .form-allowed-tags {
        display:none !important;
    }

    Thanks Emil for an awesome theme!

    http://wordpress.org/extend/themes/responsive/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Emil Uzelac

    (@emiluzelac)

    You’re welcome 🙂

    Emil

    Hello Emil,

    Tried to use the advice above to get rid of the visible code (you may use these html…) from my responsive comment box. I created a child theme and activated it with these codes in it, but the visible code in my comment box remained when viewing my page in my browser (not to mention the side effect of losing all my formatting). I am a newbie when it comes to working with code. In fact, the only reason I am working with it is in attempt to fix this problem.

    I looked through the edit themes code and never could figure out which template even addresses the “you may use these html tags…”.

    Can you help?

    Hi Kristin,

    This was slightly changed and it’s bit easier to manage. All we need now is this:

    .form-allowed-tags {
        display:none;
    }

    and voila: http://i.imgur.com/uVho2.png

    Thanks,
    Emil

    Emil,

    Forgive my ignorance. This is the entire content of my style.css file for my child style sheet. When I activate it, it does not have any of the formatting and information carried through from the parent style sheet. I thought that the child only needed minimal code (basically the part that I wnat to modify) and that the rest of the information carries through from the parent.

    Can you clarify what I could be doing wrong?
    Kristin

    style.css contents below:

    /*
    Theme Name: WarriorChildTheme
    Description: child theme for responsive
    Author: Kristin
    Version: 1.0
    Template: responsive
    */

    #respond .form-allowed-tags {
    display:none;
    }

    Hi,

    You don’t need #respond in front, just keep:

    .form-allowed-tags {
        display:none;
    }

    and yes, Child Themes will not have any elements in, anything we need to change will need to be copied over from /responsive/style.css and we need bits and pieces only.

    You can also see: Child Themes in case that you need it.

    Just an FYI, we have full blown support forum available here, where many questions are already answered 🙂 And also feel free to ask away any time when that’s necessary.

    Emil

    Use this code at bottom of your styler.css file, it will work fine.

    .form-allowed-tags{
    display:none;
    }

    Additional help: Remove your browser cache is you don’t see changes!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Theme: Responsive] Make "You may use these HTML tags and attributes:"’ is closed to new replies.