Link Insert/Close buttons missing styling

Trombones13

Well-known member
xf-voice-link-button-png.6


This is on my Echo style--the default style and the second style I'm working on are not affected. I'm not sure what I did to make that happen...any ideas?
confused.png
Thank you!
 
Either your button class css has been edited, in which case it would affect all buttons.

Or, the html for the buttons has been edited. It should look something like this:
Code:
<div class="sectionFooter">
        <input type="submit" class="button primary" value="Insert" name="insert" id="insert">
        <div style="float: right;">
            <input type="button" onclick="tinyMCEPopup.close();" class="button" value="Cancel" name="cancel" id="cancel">
        </div>
    </div>

Are you able to check in Firebug and see what it is?
 
Code:
<div class="sectionFooter">
		<input type="submit" id="insert" name="insert" value="Insert" class="button primary" />
		<div style="float: right">
			<input type="button" id="cancel" name="cancel" value="Cancel" class="button" onclick="tinyMCEPopup.close();" />
		</div>
</div>

I don't see anything different other than the slash that the source code adds at the end (this is from source code, not Firebug)... o_O
 
Top Bottom