2016-04-08, 04:10 PM
(2016-04-08, 03:36 PM)zomgasd Wrote:(2016-04-08, 03:33 PM)eNvy Wrote:(2016-04-08, 03:28 PM)zomgasd Wrote:(2016-04-08, 03:25 PM)eNvy Wrote:I found it, however, when I removed the background it also removed the "Register" button background, it's inherited from the class.(2016-04-08, 03:11 PM)zomgasd Wrote: Noob question: How can I do that? Will inspecting element work?
2xPost Just tried, inspecting element helped, but not fix the issue
I don't give support for plugins.
Yes, inspecting the element show you the HTML structure of that button, you need to search the specific class or id for that button and remove the background property from the CSS.
Then maybe the variable of the Steam button is INSIDE the register button, something like:
<span class="registerbutton">REGISTER {$steamlogin}</span>
If that's the case, you can move the variable ( {$steamlogin} ) out of the <span> tag.
I looked for it in the header_welcomeblock_guest (not sure if that was where I was supposed to look) this is the code that's integrated, I didn't find $steamlogin in it:
<a href="{$mybb->settings['bburl']}/misc.php?action=steam_login"><img border="0" src="http://steamcommunity-a.akamaihd.net/public/images/signinthroughsteam/sits_large_border.png" alt="Login through Steam" style="vertical-align:middle"></a></span>
{$steamlogin} is just an example, in this case the code of the button is this:
<a href="{$mybb->settings['bburl']}/misc.php?action=steam_login"><img border="0" src="http://steamcommunity-a.akamaihd.net/public/images/signinthroughsteam/sits_large_border.png" alt="Login through Steam" style="vertical-align:middle"></a>
But again, this is inside a <span> tag, search if before the <a> tag starts there's something like <span class="name">, or just copy and paste the header_welcomeblock_guest here.
I don't give support on PM.