Beginner questions
- The topic ‘Beginner questions’ is closed to new replies.
Need help? Check out our Support site, then
Hi,
Thank you very much for the Arcade theme, it’s really lovely!
As a WordPress clumsy beginner I have trouble to design my website as I want it. So a few questions here, thanks in advance for your support:
– How can I reduce the space between the site title and the tagline below?
– How can I simply remove the button “See more”” on the main page?
– (sorry, you’re not going to like this question): How can I remove/ change the”powered by WordPress” credit in the footer?
– I’d like to insert a contact form in the first side bar (widget), is it possible?
Thanks a lot, apologies for so many questions but I’m really struggling.
My website is http://narrativ.fr
1. You would need the Custom Design upgrade so that you can add some custom CSS.
Add this CSS:
#site-description.margin-top {
margin-top: 90px;
}
Reduce the number to reduce the margin.
2. Use this CSS:
#more-site {
display: none;
}
3. Removing that credit is a violation of the terms and services on WordPress.com.
4. You can read more about contact pages here:
https://en.support.wordpress.com/contact-form/
4.
Hi,
Thank you very much for your answers. It’s very helpful. However the CSS code
#more-site {
display: none;
}
is not working, the button “Learn more” doesn’t disappear. Anything else I can do?
Above you asked about the “See More” button. That CSS will remove that button.