Help me solve the problem with the Zeta theme

aikis

Active member
Elite
XNullUser
Joined
Oct 9, 2021
Messages
140
Reaction score
123
Points
43
Website
autopmr.com
NullCash
83
Help me solve the problem with the Zeta theme

Here is the problem. Help me figure it out. When entering the site (local server), a 404 window appears (screenshot), but the user logs into the account. There are no problems on the hosting with the Zeta version 1.19, but on the local server there is such a problem with both 1.19 and 1.37. If you have encountered or understand how to solve the problem, write, I will be grateful. Perhaps something with the local server settings, but I am not educated in the server part.
 

Attachments

  • screenshot-1756992043703.png
    screenshot-1756992043703.png
    100 KB · Views: 3

sasha007

New member
XNullUser
Joined
Feb 8, 2021
Messages
21
Reaction score
15
Points
3
NullCash
184
The issue appears to be caused by a missing image element on the login page. To resolve this, use Chrome Developer Tools to identify the missing image. Once located, remove it from the style.css file.I think this one:

Code:
.pre-account > .content > section.container::after.

replace with:

.pre-account > .content > section.container::after {
  background: transparent;
}
 
Last edited:

KLOWN

Active member
Elite
XNullUser
Joined
Nov 18, 2023
Messages
74
Reaction score
161
Points
33
Location
Mars
NullCash
574
File style.css, remove line 1765 (.pre-account > .content > section.container:after {background-image:url('../images/account-cover.png');})
 
Top