Techs Think - IT, Technology and more!

Status
Not open for further replies.
I like the theme. Used it before on some music forum years ago. Anyway, awesome that it's free - but Brivium has a bad rep everywhere it seems.
 
Thank you to everyone that continues to contribute to Techs Think! We have passed 500 posts and on our way to 1,000! Come join us on our journey 🙂

Check it out, pretty numbers 😀
vXFc8uH.jpg
 
Today we upgraded from Xenforo 2.0 to 2.1! As a result we had to change our theme. Please let me know what you think and be sure to come join our discussion! 😉
 
Please let me know what you think
The logo is really small.

Believe it or not the image itself is actually larger. For some reason the theme itself resizes the logo. In my opinion it still looks okay but I do agree if I can manage to figure out how to get it to look bigger I will.
You can adjust it by overwriting the CSS:
Code:
.p-header .p-header-logo img {
    max-width: 200px !important;
}

If you want to get rid of some of the space:
Code:
.p-header {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
Since you're on XF 2.1, you can just add it to extra.less and save.
 
Please let me know what you think
The logo is really small.

Believe it or not the image itself is actually larger. For some reason the theme itself resizes the logo. In my opinion it still looks okay but I do agree if I can manage to figure out how to get it to look bigger I will.
You can adjust it by overwriting the CSS:
Code:
.p-header .p-header-logo img {
    max-width: 200px !important;
}

If you want to get rid of some of the space:
Code:
.p-header {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
Since you're on XF 2.1, you can just add it to extra.less and save.

Awesome, I just modified it and that is so much better 🙂 thanks!
 
It says "Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request."
 
Please let me know what you think
The logo is really small.

Believe it or not the image itself is actually larger. For some reason the theme itself resizes the logo. In my opinion it still looks okay but I do agree if I can manage to figure out how to get it to look bigger I will.
You can adjust it by overwriting the CSS:
Code:
.p-header .p-header-logo img {
    max-width: 200px !important;
}

If you want to get rid of some of the space:
Code:
.p-header {
padding-top: 0px !important;
padding-bottom: 0px !important;
}
Since you're on XF 2.1, you can just add it to extra.less and save.

Actually you can compress that a bit to:
Code:
.p-header {
padding: 0 <legit value here> !important;
}
(replace <legit value here> if there is a horizontal padding that needs to remain)

Short hand CSS can save you lots of lines. Also, only use !important when you absolutely have to. It's typically bad form to use it.
 
Status
Not open for further replies.
Back
Top Bottom