Welcome Guest [Log In] [Register]
We hope you enjoy your visit.

You're currently viewing our forum as a guest. This means you are limited to certain areas of the board and there are some features you can't use. If you join our community, you'll be able to access member-only sections, and use many member-only features such as customizing your profile, sending personal messages, and voting in polls. Registration is simple, fast, and completely free.


Join our community!


If you're already a member please log in to your account to access all of our features:

Username:   Password:
Multiquote (on) Multiquote (off)
Add Reply
Ad Not Showing
Topic Started: Apr 15 2018, 01:49 PM (284 Views)
BlackUnicorn49
Member Avatar
Member
[ * ]
I am reworking my current theme to make it more mobile friendly.

Though I have run into a problem with a table bar appearing.
Code:
 

element.style {
text-align: center;
}

input, select, td, th {
font-size: 100%;
}
td {
background: #fafafa;
color: #333;
padding: 5px 10px;
}
th, td {
border: 1px solid #e7e7e7;
It does look like an Ad Unit is meant to be appearing here, through a look on chrome dev tools:
Code:
 
<td style="text-align: center;">
<!-- Ad Unit [29] 728x90 -->
<div id="switch_pp_override_1_13924" class="switch_placeholder">
<iframe id="__switch_placeholder_1" name="__switch_placeholder_1" seamless="seamless" framespacing="0" frameborder="no" scrolling="no" style="width: 0px; height: 0px; display: block;" src="javascript:" class="switch_request_frame" switch_timestamp="1523812157715">
</iframe><iframe seamless="seamless" frameborder="0" scrolling="no" style="display:none;position:absolute" id="" name="dead_frame"></iframe><div style="border:none; padding: 0px; margin: 0px; width: 0px; height: 0px; position: absolute;" id="__switch_placeholder_div_1" name="__switch_placeholder_div_1" class="switch_content_div" scrolling="no"></div></div>
<script> (__scads = window.__scads ||
[]).push({"z":29,"targetId":"switch_placeholder_d99b9b6e3fb8c8f17ffdf12dc0e27b22","domain":"delivery.zetabbs.com","width":"728","height":"90"});
</script>
<script async="" src="//delivery.zetabbs.com/adserver/sat.js?v=2"></script></td>

Edit: The only fix I could find for the default Zetaboards theme (and this one) was to add this javascript in layout:
Code:
 
<script>
$(function() {
if ($.browser.msie && $.browser.version.substr(0,1)<7)
{
$('li').has('ul').mouseover(function(){
$(this).children('ul').css('visibility','visible');
}).mouseout(function(){
$(this).children('ul').css('visibility','hidden');
});
}
});
</script>


Edit: Might as well close this, as I fixed my own problem by this point.
Edited by BlackUnicorn49, Apr 19 2018, 08:27 PM.
Offline Profile Quote Post Goto Top
 
1 user reading this topic (1 Guest and 0 Anonymous)
« Previous Topic · ZetaBoards - Theme & Code Support · Next Topic »
Add Reply