Viewing 8 replies - 1 through 8 (of 8 total)
  • Re: the grey boxes – I had a similar problem after upgrading from 2.6 to 2.7.
    It looks like the “Previous”and “Next ” areas – which were defined as “<div>” objects in previous versions – are now defined as “<button>” objects.
    This means that they’ll inherit any button css properties defined in your theme.
    My theme is based on “underscores”, which defines buttons as having (amongst other properties) a grey background – hence the boxes.
    I’ve over-ridden this by putting the following in my theme’s css file, which loads after the underscores file (and after LB+CB, although that’s probably not relevant):

    #cboxPrevious, #cboxNext {
    	background:transparent;
    	border:0 none;
    	box-shadow:none;
    	text-shadow:none;
    	}

    However, I have another problem with an outline of the button (in blue) remaining after I click a link (even after I move to the next image). I suspect that this is similar in nature, but haven’t tracked it down yet.

    I’ve found what’s going on with the ‘outline’ I mentioned at the end of my last reply.
    It is the browser’s default outline, which applies to the button currently with focus.
    I found an explanation here : https://tjvantoll.com/2013/01/28/stop-messing-with-the-browsers-default-focus-outline/

    I’ve added the following to my stylesheet, which appears to resolve it :

    button#cboxPrevious:focus, button#cboxNext:focus
    	{
    	border:0 none;
    	margin:0;
    	box-shadow:none;
    	outline:none;
    }

    Thread Starter Wansbrough

    (@wansbrough)

    Thanks muttznutz, its a work round but not a fix. I will give the author a few days to respond and then roll back to the previous version.

    No worries, Wansbrough.
    Hopefully the author can apply something similar soon.

    Thread Starter Wansbrough

    (@wansbrough)

    Being as there has been no response, not even just to confirm the topic has been read I have done back to 2.6. That version worked perfectly for me so if it ain’t broke…..don’t fix it!

    3 of 27 support threads in the last two months have been resolved.

    I am not going to mark it as resolved because there are still issues with my installation and 2.7

    Hi Wansbrough
    Could you please tell me how to get back to version 2.6
    Can’t find it anywhere…

    Thx

    To Wansbrough:

    Could you please tell me how to get back to version 2.6
    Can’t find it anywhere…

    No need to answer that. I re-uploaded version 2.6 whitch works perfectly!

    Thread Starter Wansbrough

    (@wansbrough)

    No need to answer that. I re-uploaded version 2.6 whitch works perfectly!

    It does indeed.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Not working after update’ is closed to new replies.