After changing things in the CSS Spreadsheet i eventually tested out the forum, and i am now unable to click on anything. i can't click on the topics or on the members names anymore. When logging into the forum i also can't click on the "login" button and i can't click in the fields to enter my username and password..
3 posters
Unable to click on anything
TheLuffinator- New Member
- Posts : 7
Reputation : 1
Language : English
- Post n°1
Unable to click on anything
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
- Post n°2
Re: Unable to click on anything
TheLuffinator- New Member
- Posts : 7
Reputation : 1
Language : English
- Post n°3
Re: Unable to click on anything
Hi, i did export the theme and when i import it or change skins, i can click on things again but then i lose A LOT of changes..
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
- Post n°4
Re: Unable to click on anything
TheLuffinator wrote:Hi, i did export the theme and when i import it or change skins, i can click on things again but then i lose A LOT of changes..
Well its something you've added and unless you want to log into the admin panel of your utilities and try and solve the problem by removing the CSS you've added you'll have little options. We don't know what you've added so we can't identify the problem.
TheLuffinator- New Member
- Posts : 7
Reputation : 1
Language : English
- Post n°5
Re: Unable to click on anything
I guess, but i'm not totally sure the CSS Spreadsheet is the cause..All i really did in the CSS Spreadsheet was moved things such as the header around and replaced the images..And can you even change the Login page from the CSS Spreadsheet?
Thanks
Thanks
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
- Post n°6
Re: Unable to click on anything
Can you link me to your forum?
TheLuffinator- New Member
- Posts : 7
Reputation : 1
Language : English
- Post n°7
Re: Unable to click on anything
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
- Post n°8
Re: Unable to click on anything
It could be something on your end because I can click on everything no bother.
Have you tried a different browser and clearing your cookies+cache?
Have you tried a different browser and clearing your cookies+cache?
TheLuffinator- New Member
- Posts : 7
Reputation : 1
Language : English
- Post n°9
Re: Unable to click on anything
That is really weird. I have tried Chrome and Firefox and tried on my phone and had no luck. Some things CAN be clicked on though, the main buttons at the top (Home, Portal, Calender etc) can be clicked on. It's the things like the Member names and topics that i can't seem to click on. And the logging in.
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
- Post n°10
Re: Unable to click on anything
Yeah I just noticed that, I can click on the nav bar but everything else isn't clickable.
Its definitely something you've added then.
Because before you added anything, everything was fine and then after everything's not click able.
Its definitely something you've added then.
Because before you added anything, everything was fine and then after everything's not click able.
TheLuffinator- New Member
- Posts : 7
Reputation : 1
Language : English
- Post n°11
Re: Unable to click on anything
So you think i should just restore from yesterday?
Derri- Helper
- Posts : 8711
Reputation : 638
Language : English & Basic French
Location : Scotland, United Kingdom
- Post n°12
Re: Unable to click on anything
TheLuffinator wrote:So you think i should just restore from yesterday?
Well since you don't know what you've added that's caused the problem I probably would advise doing a full back up to yesterday.
TheLuffinator- New Member
- Posts : 7
Reputation : 1
Language : English
- Post n°13
Re: Unable to click on anything
Okay well thanks a lot for the helpÂ
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°14
Re: Unable to click on anything
Hi,
I'll take a look at your forum. From what I'm seeing one of your elements is covering the rest of the forum preventing it from being clicked. I'll get back to you when I've found the cause.
I'll take a look at your forum. From what I'm seeing one of your elements is covering the rest of the forum preventing it from being clicked. I'll get back to you when I've found the cause.
Ange Tuteur- Forumaster
- Posts : 13207
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania
- Post n°15
Re: Unable to click on anything
The problem is coming from this rule you've added :
In it you have to following declaration :
z-index affects the stack index of elements, in this case -1 places the child element(#content) under the parent(#wrapper) making it unable to be clicked. Removing z-index: -1; will solve your problem.
- Code:
#container {
 background: url(http://i.imgur.com/UUtdem2.png) repeat-y center;
 left: 0;
 margin: 0 auto!important;
 padding: 0 10px 30px;
 position: relative;
 width: 900px;
 z-index: -1;
}
In it you have to following declaration :
- Code:
z-index: -1;
z-index affects the stack index of elements, in this case -1 places the child element(#content) under the parent(#wrapper) making it unable to be clicked. Removing z-index: -1; will solve your problem.