Category Name not displaying
Quote from David Dixon on January 11, 2019, 11:41 amAt present, I can see a blue bar without the name of the Category showing?
The forums under each category is displayed correctly.How do I switch on the name of the Category to appear inside the blue title bar?
At present, I can see a blue bar without the name of the Category showing?
The forums under each category is displayed correctly.
How do I switch on the name of the Category to appear inside the blue title bar?
Quote from Asgaros on January 11, 2019, 12:18 pmHello @daviddixon-one
If parts of the forum are not rendered correctly, it might be a conflict caused by css-rules of your theme. Can you provide me a link where I can have a look at the described display-issue? Maybe there is a possibility to add a compatibility-rule for this.
Hello @daviddixon-one
If parts of the forum are not rendered correctly, it might be a conflict caused by css-rules of your theme. Can you provide me a link where I can have a look at the described display-issue? Maybe there is a possibility to add a compatibility-rule for this.
Quote from David Dixon on January 11, 2019, 10:30 pmThank you.
http://berowrawaters.org/home-page/residents/
Thank you.
http://berowrawaters.org/home-page/residents/
Quote from Asgaros on January 11, 2019, 10:47 pmHello again @daviddixon-one
As I see your theme is applying a lot of css-rules which overwrite the ones generated by Asgaros Forum. You can try to add the following custom-css-code to Forum -> Appearance:
#af-wrapper .title-element:before { display: inline-block !important; /* comp */ }It does not fix the display-issue completely but the titles of categories will be visible again.
Hello again @daviddixon-one
As I see your theme is applying a lot of css-rules which overwrite the ones generated by Asgaros Forum. You can try to add the following custom-css-code to Forum -> Appearance:
#af-wrapper .title-element:before {
display: inline-block !important; /* comp */
}
It does not fix the display-issue completely but the titles of categories will be visible again.
Quote from David Dixon on January 11, 2019, 10:56 pmCool, if I only had 20% of your knowledge … I could rule the world.
http://berowrawaters.org/home-page/residents/
The display issue worked, am I able to align the text?
Cool, if I only had 20% of your knowledge … I could rule the world.
http://berowrawaters.org/home-page/residents/
The display issue worked, am I able to align the text?
Quote from David Dixon on January 11, 2019, 11:42 pmYou have exceeded your tech support, so I understand if there is no other solution.
I was able to ‘center’ the category description within the :
#af-wrapper .title-element {
text-align; center;
}But ideally, the text should be vertical-align; middle; which didn’t work. Any other snippets of code you think might work.
Thank you once again.
You have exceeded your tech support, so I understand if there is no other solution.
I was able to ‘center’ the category description within the :
#af-wrapper .title-element {
text-align; center;
}
But ideally, the text should be vertical-align; middle; which didn’t work. Any other snippets of code you think might work.
Thank you once again.
Quote from David Dixon on January 12, 2019, 8:16 amRighto, I have no idea what I’m doing, but I have added the following custom-css-code to Forum -> Appearance: … and it looks to be working at http://berowrawaters.org/home-page/residents/
Objective was to display the Category name inside the blue title bar.
Can someone look at my feeble attempt and refine it please, in case theres unnecessary lines of code, etc. Many thanks.
#af-wrapper {
width: 1100px !important;
margin: auto !important;
padding: 35px;
border: 1px solid #888888;
}
#af-wrapper .title-element:before {
display: inline-block !important; /* comp */;
}
#af-wrapper .title-element {
height: 40px !important;
margin-top: auto !important;
}
Righto, I have no idea what I’m doing, but I have added the following custom-css-code to Forum -> Appearance: … and it looks to be working at http://berowrawaters.org/home-page/residents/
Objective was to display the Category name inside the blue title bar.
Can someone look at my feeble attempt and refine it please, in case theres unnecessary lines of code, etc. Many thanks.
#af-wrapper {
width: 1100px !important;
margin: auto !important;
padding: 35px;
border: 1px solid #888888;
}
#af-wrapper .title-element:before {
display: inline-block !important; /* comp */;
}
#af-wrapper .title-element {
height: 40px !important;
margin-top: auto !important;
}
Quote from Asgaros on January 12, 2019, 2:05 pm@daviddixon-one
You can try the following instead:
#af-wrapper { width: 1100px !important; margin: auto !important; padding: 35px; border: 1px solid #888888; } #af-wrapper .title-element:before { display: inline-block !important; /* comp */; content: none !important; }This is still a workaround because it just tries to fix stuff where your theme is messing around so I dont know if it has some side-effects.
You can try the following instead:
#af-wrapper {
width: 1100px !important;
margin: auto !important;
padding: 35px;
border: 1px solid #888888;
}
#af-wrapper .title-element:before {
display: inline-block !important; /* comp */;
content: none !important;
}
This is still a workaround because it just tries to fix stuff where your theme is messing around so I dont know if it has some side-effects.
