lockamylynn
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Blank Space Before 1st PostCould you be more specific about which blank space you wish to remove? Everything looks generally well spaced to me so I can’t pinpoint what you want to get rid of.
Maybe you already fixed it?
Forum: Themes and Templates
In reply to: Need Custom CSS for Enigma Slider ColorThe link to your site brings me to a “Website coming soon” page with an admin login option.
I would need to see your site in order to look at the code to help you with the CSS. Can you perhaps make your site public?
Forum: Fixing WordPress
In reply to: Problem with tag, permalink and other stuffI’m not sure if you are saying you are having trouble doing these things or that you know how to do these things but the buttons are not working.
If you don’t know how to do these things here is basic instructions (if these things just aren’t working I guess my help is useless 🙂 –
permalinks: Once you save your post the permalink will appear under the title and can be edited but if you would like to do it in one step you can fill in the slug field with your desired slug for the permalink. I had to go into screen options and check slug. It was not visible by default.
tags: you should be able to add tags by typing them into the tag box. If you can’t see the tag box you may need to check the tags option in screen options to make it visible.
private: you can set the visibility option to password protected or private before you publish it.
Forum: Fixing WordPress
In reply to: Anchor links not working on desktop but works on mobileSorry, I guess I didn’t check every link. There is a problem with the “company” “service” and “contact us” links.
These three links are pointing to an anchor within the “games” page (/#) so when you are not on the “games” page they are linking to an anchor that does not exist on the current page.
This problem can be solved by having “company” link to /#company (that is the home page specifically landing at the anchor at the company section). Similarly for the other links.
- This reply was modified 7 years, 7 months ago by Jan Dembowski.
Forum: Fixing WordPress
In reply to: Anchor links not working on desktop but works on mobileEvery link seems to be working on my desktop, for what it is worth. All menu items in the header and footer, as well as, the “Access the Press Kit here” link in the body all work fine.
Forum: Fixing WordPress
In reply to: How to remove the name/email /website from comments formIf you uncheck the “Comment author must fill out name and email” box under settings/Discussion settings it will make the name and email field optional but it still shows up in case someone chooses to fill it out.
If you want to remove these fields (after marking them as optional of course) you can use CSS to remove them.
.comment-form-author, .comment-form-email {
display: none;
}