Posts: 8
Threads: 2
Joined: 24th Sep 12
26th Oct, 01:18 am
(This post was last modified: 26th Oct, 01:18 am by Sam.)
http://www.themefreak.net/demo/index.php?action=mytheme&style=12
From the left side "header" to the middle of the forum's name, nothing is clickable, until about 40% from the left. You're having the issue, and so am I.
(EG, try to click "Test Forum One"
Any ideas on a fix?
Posts: 743
Threads: 45
Joined: 5th Apr 12
I have no problems and this is the first report of this error I've seen.. can you explain further?.. maybe a screen shot?
Posts: 8
Threads: 2
Joined: 24th Sep 12
26th Oct, 01:51 am
(This post was last modified: 26th Oct, 01:51 am by Sam.)
Higlight around the page:
http://i.imgur.com/gTdHL.png
As in, to the right of the blue, I can click links, to the left (Not including where the normal header links) I can't click anything.
This happens when it's installed on my site, and your demo. At least for me xD
Posts: 743
Threads: 45
Joined: 5th Apr 12
what browser are you using? I haven't seen this problem when testing..
Posts: 8
Threads: 2
Joined: 24th Sep 12
Chrome - just reinstalled my os, I'll let you know if anything changes.
(This thread is just me letting you know, not asking for a fix)
Posts: 743
Threads: 45
Joined: 5th Apr 12
If it truly is a problem I want to fix it.. I'm just finding it odd that this is the first time anyone has reported it..
Posts: 8
Threads: 2
Joined: 24th Sep 12
I'll do a quick screencast tomorrow night, and let you know (:
Posts: 5
Threads: 1
Joined: 7th Jan 13
Im have this exact same issue as well as other users on my forum, we are using Chrome and its annoying since chrome is the main browser i use.
Posts: 743
Threads: 45
Joined: 5th Apr 12
Alright I figured out the problem with this. Simply replace the scroll.css code with this and the problem should be fixed.
Code:
/*
* simplyScroll 2 - a scroll-tastic jQuery plugin
*
* http://logicbox.net/jquery/simplyscroll
* http://plugins.jquery.com/project/simplyScroll
*
* Copyright (c) 2009-2011 Will Kelly - http://logicbox.net
*
* Dual licensed under the MIT (MIT-LICENSE.txt)
* and GPL (GPL-LICENSE.txt) licenses.
*
* Last revised: 31/01/2012
*
*/
/* Default/Master classes
Example markup format (for horizontal scroller)
Note all DIVs are generated and should not be hard-coded
<div class="your-custom-class simply-scroll-container">
<div class="simply-scroll-btn simply-scroll-btn-left"></div>
<div class="simply-scroll-btn simply-scroll-btn-right"></div>
<div class="simply-scroll-clip">
<ul class="simply-scroll-list">
<li>...</li>
...
</ul>
</div>
</div>
*/
.simply-scroll-container { /* Container DIV - automatically generated */
position: relative;
}
.simply-scroll-clip { /* Clip DIV - automatically generated */
position: relative;
overflow: hidden;
}
.simply-scroll-list { /* UL/OL/DIV - the element that simplyScroll is inited on */
overflow: hidden;
margin: 0;
padding: 0;
list-style: none;
}
.simply-scroll-list li {
padding: 0;
margin: 0;
list-style: none;
}
.simply-scroll-list li img {
border: none;
display: block;
}
/* Custom class modifications - override classees
.simply-scroll is default
*/
.simply-scroll { /* Customisable base class for style override DIV */
width: 210px;
height: 200px;
margin-bottom: 1em;
}
.simply-scroll .simply-scroll-clip {
width: 210px;
height: 200px;
}
.simply-scroll .simply-scroll-list {}
.simply-scroll .simply-scroll-list li {
float: left;
width: 290px;
height: 200px;
}
.simply-scroll .simply-scroll-list li img {}
.simply-scroll .simply-scroll-btn {}
.simply-scroll .simply-scroll-btn-left {}
.simply-scroll .simply-scroll-btn-left.disabled {}
.simply-scroll .simply-scroll-btn-left:hover {}
.simply-scroll .simply-scroll-btn-right {}
.simply-scroll .simply-scroll-btn-right.disabled {}
.simply-scroll .simply-scroll-btn-right:hover {}
.simply-scroll .simply-scroll-btn-up {}
.simply-scroll .simply-scroll-btn-up.disabled {}
.simply-scroll .simply-scroll-btn-up:hover {}
.simply-scroll .simply-scroll-btn-down {}
.simply-scroll .simply-scroll-btn-down.disabled {}
.simply-scroll .simply-scroll-btn-down:hover {}
/* Vertical scroller example */
.vert { /* wider than clip to position buttons to side */
width: 200px;
height:1000px;
margin-bottom: 1.5em;
z-index:-1;
}
.vert .simply-scroll-clip {
width: 210px;
height: 100%;
z-index:-1;
}
.vert .simply-scroll-list { float:right;overflow:hidden;
}
.vert .simply-scroll-list li {
width: 210px;
height: 1674px;
z-index:-1;
}
.vert .simply-scroll-list li img { }
/* NOTE left-right classes wouldn't be needed on vertical scroller */