Page 2 of 3
Re: Forum is no longer across screen
Posted: Sat Jan 05, 2019 10:04 pm
by Stevo
The "active topics" quick link seems to be missing in FF, though I can still get to it through a bookmark.
Any chance of getting it back?
Edit: OK, it's in Quick Links. Two clicks instead of one.
Re: Forum is no longer across screen
Posted: Sat Jan 05, 2019 10:08 pm
by richb
Stevo wrote: Sat Jan 05, 2019 10:04 pm
The "active topics" quick link seems to be missing in FF, though I can still get to it through a bookmark.
Any chance of getting it back?
Edit: OK, it's in Quick Links. Two clicks instead of one.
https://forum.mxlinux.org/viewtopic.php ... 42#p476842
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 4:53 am
by antechdesigns
Still showing part of the logo at the bottom, a quick fix is adding this to the .site_logo css: background-repeat: no-repeat;
example
Code: Select all
.site_logo {
background-image: url("./images/site_logo.gif");
background-repeat: no-repeat;
}
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 5:14 am
by richb
antechdesigns wrote: Sun Jan 06, 2019 4:53 am
Still showing part of the logo at the bottom, a quick fix is adding this to the .site_logo css: background-repeat: no-repeat;
example
Code: Select all
.site_logo {
background-image: url("./images/site_logo.gif");
background-repeat: no-repeat;
}
Can you post a screenshot? I am not seeing that on any of the browsers I tried, Firefox, Google Chrome and Opera.
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 5:23 am
by antechdesigns
richb wrote: Sun Jan 06, 2019 5:14 am
antechdesigns wrote: Sun Jan 06, 2019 4:53 am
Still showing part of the logo at the bottom, a quick fix is adding this to the .site_logo css: background-repeat: no-repeat;
example
Code: Select all
.site_logo {
background-image: url("./images/site_logo.gif");
background-repeat: no-repeat;
}
Can you post a screenshot? I am not seeing that on any of the browsers I tried, Firefox, Google Chrome and Opera.
chromium
chromium.png
firefox
firefox.png
waterfox
waterfox.png
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 5:40 am
by richb
That is the normal image. It was that way before the software change. I doubt it is repeating and believe that was the original design. However we can look into it.
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 5:50 am
by antechdesigns
richb wrote: Sun Jan 06, 2019 5:40 am
That is the normal image. It was that way before the software change. I doubt it is repeating and believe that was the original design. However we can look into it.
By default css repeats an image unless you tell it not too, the code I posted should fix it in all browsers and would have also fixed the other issue as well, nvm if that's the look your going for.
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 5:53 am
by richb
antechdesigns wrote: Sun Jan 06, 2019 5:50 am
richb wrote: Sun Jan 06, 2019 5:40 am
That is the normal image. It was that way before the software change. I doubt it is repeating and believe that was the original design. However we can look into it.
By default css repeats an image unless you tell it not too, the code I posted should fix it in all browsers and would have also fixed the other issue as well, nvm if that's the look your going for.
We are looking into it.
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 10:33 am
by peregrine
@antechdesigns Thank you for your feedback
Fixed. I experimented on my local copy of the forum. Although the css edit should have resolved the issue it had no effect. Styling on this sub theme does not result in what you expect. I was able to resolve it by adding a white background to the logo image and placing the lower edge of logo itself a few pixels above the bottom of the image.
I had to delete the cached images in my browser to see the change.
Re: Forum is no longer across screen
Posted: Sun Jan 06, 2019 10:57 am
by antechdesigns
peregrine wrote: Sun Jan 06, 2019 10:33 am
@antechdesigns Thank you for your feedback
Fixed. I experimented on my local copy of the forum. Although the css edit should have resolved the issue it had no effect. Styling on this sub theme does not result in what you expect. I was able to resolve it by adding a white background to the logo image and placing the lower edge of logo itself a few pixels above the bottom of the image.
I had to delete the cached images in my browser to see the change.
Your welcome, It was messing with my OCD.
I also have a fix for the gradient repeat on the forum boxes, if you need it!? (can't find the post now)