Constructive Criticism for my forum design

How would you rate your experience?


  • Total voters
    11
try with this:
Less:
.porta-article-item .porta-article-date .porta-date-block {
    border-width: 1px !important;
    border-color: #e0e0e0;
    background: #ffffff;
}
Thank you! I inspected the element on the other style I had and added this to extra.less. What does the important tag do? Force it to use that over everything else?


Code:
.porta-article-item .porta-article-date .porta-date-block {
    background: #fefefe;
    border: 1px solid #e8e8e8; //this one
    border-radius: 10px;
    width: 50px;
    padding: 7px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.porta-article-item .porta-article-date .porta-date-block b {
    display: block;
    font-size:1.5em
}
 
This is meant constructively - I would reduce the size of the logo in the header - it takes up a pretty large chunk of screen real estate.

Quick edit, but something like this maybe?

1678500641017.webp
 
Last edited:
Maybe you can show a mobile header: https://xenforo.com/community/resources/cxf-mobile-logo-header.7488/

And adjust the code to hide the small logo when scrolling, maybe.
How would you go about centering just the logo image in extra.less? Currently I have this code:

CSS:
// Center Logo
.p-nav-smallLogo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.p-header-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
     width: 50%;
}
.has-js .p-header {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

This seems to work but centers the whole header and leaves whitespace. I will attach an image to show what I am talking about.

[Edit] I achieved it with this:

Code:
.p-header-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.p-header-logo--image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;   
}

Sorry for the tag. Just wanted to give an update.
 

Attachments

  • Screenshot 2023-03-12 at 4.58.06 PM.webp
    Screenshot 2023-03-12 at 4.58.06 PM.webp
    7.3 KB · Views: 21
  • Screenshot 2023-03-12 at 5.04.21 PM.webp
    Screenshot 2023-03-12 at 5.04.21 PM.webp
    6.8 KB · Views: 21
This is meant constructively - I would reduce the size of the logo in the header - it takes up a pretty large chunk of screen real estate.

Quick edit, but something like this maybe?

View attachment 282765
How would you go about doing that? I just tried to make it smaller by going to basic options ad setting the height from 300 to 100 but on mine it looks the same. Not sure if it's changed on your end or not.

Thank you for the tip
 
This is how it looks for me at the moment.
 

Attachments

  • Screenshot 2023-03-12 at 9.18.56 PM.webp
    Screenshot 2023-03-12 at 9.18.56 PM.webp
    71.6 KB · Views: 17
  • IMG_6769.webp
    IMG_6769.webp
    50 KB · Views: 18
not sure if you noticed from a prior reply but your site is throwing up a virus scanner alert...
 
Last edited:

Attachments

Last edited:
The site doesn’t load for me but from the screenshots I can see you’ve done a great job. Taking on everyone’s feedback and improving it is great.
 
Top Bottom