HTTP-Code 503 on each site???
January 2012 WordPress Theme
- GK User
- Mon Nov 23, 2015 9:53 am
Hi,
I had Sistrix checking my website. And I got over 250 times an HTTP-Code 503 error.
For example:
HTTP-Code: 503
URL: http://luftschubser.de/haftungsauschlus ... tion=login
Link: http://luftschubser.de/haftungsauschluss/
What kind of URL ist that? Is it because I've the Login-Button on ther uper right - at my main-menue?
How can I avoid all this errors???
Thank you!
Alex
I had Sistrix checking my website. And I got over 250 times an HTTP-Code 503 error.
For example:
HTTP-Code: 503
URL: http://luftschubser.de/haftungsauschlus ... tion=login
Link: http://luftschubser.de/haftungsauschluss/
What kind of URL ist that? Is it because I've the Login-Button on ther uper right - at my main-menue?
How can I avoid all this errors???
Thank you!
Alex
-
- Senior Boarder
- GK User
- Mon Nov 23, 2015 10:03 am
Hi,
Your login link doesn't work - it returns error 404 page, so that's the source of your issues.
Did you change anything within the login button implementation?
Your login link doesn't work - it returns error 404 page, so that's the source of your issues.
Did you change anything within the login button implementation?
-
- Moderator
- GK User
- Mon Nov 23, 2015 10:28 am
Last year, I asked you to delete that login-link from the page/menue. You changed something at a php-file, I can remember. Guess, I forgot about that after the last theme-update.
So would it be a solution to delete the login-link permanently?
So would it be a solution to delete the login-link permanently?
-
- Senior Boarder
- GK User
- Mon Nov 23, 2015 2:00 pm
Unfortunately I don't remember this modification. Yes, removing the link should fix the issue.
As i remember, you can disable it in your Template Settings.
As i remember, you can disable it in your Template Settings.
-
- Moderator
- GK User
- Tue Nov 24, 2015 7:28 am
Ah yes, I set it off. Thank you!
This button ist new?
Could you just tell me, where i can change the size of the post image/featured image?
The image which comes first in a blog post seems to be oversized, since I'm using full width at my posts.
Thanks a lot!
This button ist new?
Could you just tell me, where i can change the size of the post image/featured image?
The image which comes first in a blog post seems to be oversized, since I'm using full width at my posts.
Thanks a lot!
-
- Senior Boarder
- GK User
- Tue Nov 24, 2015 10:02 am
Add the following code into the theme’s css/override.css file (make sure to enable the “Use the override.css file” option in Template options > Advanced in the WordPress backend)
The second part of the code disables the hover effect - because it won't look good if the image is not full width.
- Code: Select all
article figure.featured-image img {
max-width: none;
width: auto;
}
article figure.featured-image:hover img {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
}
The second part of the code disables the hover effect - because it won't look good if the image is not full width.
-
- Moderator
- GK User
- Tue Nov 24, 2015 11:10 am
I put that code into override.css and it's enabled in Game Settings.
Hyper Cache was cleared. Nothing changed.
???
Hyper Cache was cleared. Nothing changed.
???
-
- Senior Boarder
- GK User
- Tue Nov 24, 2015 11:43 am
Did you clean your browser's cache? Please check i.e. http://luftschubser.de/jetboil-flash-kocher/
The image is not full width - if you want to decrease the sieze more, please use constant width value instead of
The image is not full width - if you want to decrease the sieze more, please use constant width value instead of
- Code: Select all
width: auto;
-
- Moderator
- GK User
- Tue Nov 24, 2015 11:56 am
Oh yes, that's working.
The align is left. How can I center the image?
The align is left. How can I center the image?
-
- Senior Boarder
- GK User
- Wed Nov 25, 2015 9:17 am
Hey that works quite good. Thanks!
But can you just tell me, how to center the image description too?
Is ist still align left, while image is centered.
Thanks!
But can you just tell me, how to center the image description too?
Is ist still align left, while image is centered.
Thanks!
-
- Senior Boarder
- GK User
- Thu Nov 26, 2015 9:34 am
Hi,
Try to add also this code:
Try to add also this code:
- Code: Select all
article figure.featured-image figcaption {
text-align: center;
}
-
- Moderator
12 posts
• Page 1 of 1