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.png
 
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.png
    Screenshot 2023-03-12 at 4.58.06 PM.png
    49 KB · Views: 19
  • Screenshot 2023-03-12 at 5.04.21 PM.png
    Screenshot 2023-03-12 at 5.04.21 PM.png
    79.3 KB · Views: 19
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.png
    Screenshot 2023-03-12 at 9.18.56 PM.png
    333.1 KB · Views: 15
  • IMG_6769.PNG
    IMG_6769.PNG
    219.3 KB · Views: 16
not sure if you noticed from a prior reply but your site is throwing up a virus scanner alert...
 
Last edited:

Attachments

  • Screenshot 2023-03-14 at 11.54.29 PM.png
    Screenshot 2023-03-14 at 11.54.29 PM.png
    114.2 KB · Views: 14
  • Screenshot 2023-03-14 at 11.54.41 PM.png
    Screenshot 2023-03-14 at 11.54.41 PM.png
    129.2 KB · Views: 13
  • Screenshot 2023-03-14 at 11.59.31 PM.png
    Screenshot 2023-03-14 at 11.59.31 PM.png
    89.1 KB · Views: 13
  • Screen Recording 2023-03-15 at 12.00.46 AM.mov
    4.8 MB
  • Screen Recording 2023-03-15 at 12.03.08 AM.mov
    10.1 MB
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.
 
Back
Top Bottom