I set the forum page as front page, but suddenly the main domain became to redirect to the gallery page..
Then I couldn't find where to fix it.
Do I need to fix something in Admin Control panel?
How I can set custom sign-in page which will require name, address, phone, email, password, so on.
And I want to make the community which only membership can see.
Which CSS file I need to edit in order to change the menu bar hover effect?
I'm thinking to put something like a code below.
a {
position: relative;
display: inline-block;
text-decoration: none;
}
a::after {
position: absolute;
bottom: 2px;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #333;
opacity: 0;
visibility: hidden;
transition: .3s;
}
a:hover::after {
bottom: -4px;
opacity: 1;
visibility: visible;
}
Record_2020_07_24_09_39_15_653.mp4