willem0
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Button linksDashboard > Settings (? (translated)) > Customizer > Additional CSS
Forum: Fixing WordPress
In reply to: Button links??
There is something wrong with the footer. You could try:
.site-info {margin-top: 20px;}
in Additional CSSForum: Fixing WordPress
In reply to: Button linksThe first button is using this:
href=”#https://calendly.com/heartcorecoaching/support-chat”
The second also uses #
Where does the # come from?Forum: Fixing WordPress
In reply to: embedded google calendar too smallLost the last number by copying:
https://medium.com/gobeyond-ai/how-to-use-custom-css-on-specific-pages-in-wordpress-d7bf04e7cce5
Forum: Fixing WordPress
In reply to: embedded google calendar too smallTry this:
.page-id-234
.site-content .entry-content {
max-width: 800px;
}I’ve found this at: https://medium.com/gobeyond-ai/how-to-use-custom-css-on-specific-pages-in-wordpress-d7bf04e7cce5
- This reply was modified 4 years, 7 months ago by willem0.
Forum: Fixing WordPress
In reply to: Button linksThe link for “Want to discover?” is:
https://www.heart-core-coaching.com/#https://calendly.com/heartcorecoaching/support-chat
In stead of: https://calendly.com/heartcorecoaching/support-chat
Forum: Fixing WordPress
In reply to: embedded google calendar too smallI don’t know how to change this for just ONE page (the calendar-page), however your CSS defines for ALL pages:
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta,
.page-content {
margin: 0 auto;
max-width: 474px;
}You can change the width by Additional CSS, for instance:
.site-content .entry-content {
max-width: 800px;
}
However this wil change all pages, not just the calendar
Maybe somebody else knows how to do this (for only .post-234) ?Forum: Fixing WordPress
In reply to: Moving my website from /wp2/ to /You are a very good and fast student ??
Forum: Fixing WordPress
In reply to: Footer colorWhat about adding to your Additional CSS:
footer.site-footer {
background: #f00;
color: #f00;
}==========================
Or change anything you want:
/*footer css*/
footer.site-footer {
float: left;
width: 100%;
padding: 40px 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
/* background: #00cccc; */
/* color: #00cccc; */
}
footer.site-footer .site-info {
text-align: center;
color: #fff;
float: left;
width: 100%;
}
footer.site-footer .footer-right {
text-align: center;
margin-bottom: 20px;
width: 100%;
float: left;
}
footer.site-footer .footer-right .social_icons li {
display: inline-block;
margin: 0 10px;
}
footer.site-footer .footer-right .social_icons li a {
width: 35px;
height: 35px;
display: block;
line-height: 35px;
background: rgba(255, 255, 255, 0);
color: #fff;
font-size: 16px;
text-align: center;
border: 1px solid #fff;
-webkit-transition: 0.3s all;
-moz-transition: 0.3s all;
-o-transition: 0.3s all;
transition: 0.3s all;
}
footer.site-footer .footer-right .social_icons li a:hover {
color: #fff;
border-color: transparent;
}
footer.site-footer .footer-right .social_icons li.facebook a:hover {
background: #3b5998;
}
footer.site-footer .footer-right .social_icons li.gplus a:hover {
background: #d34836;
}
footer.site-footer .footer-right .social_icons li.linkedin a:hover {
background: #007bb6;
}
footer.site-footer .footer-right .social_icons li.twitter a:hover {
background: #1dcaff;
}
footer.site-footer .footer-right .social_icons li.Instagram a:hover {
background: #125688;
}
footer.site-footer .footer-right .social_icons li.pinterest a:hover {
background: #e95950;
}
footer.site-footer .site-info a {
color: #fff;
}
/*footer css*/Forum: Fixing WordPress
In reply to: Moving my website from /wp2/ to /At the moment the original site is not a WordPress-site
Are you able to install a new WordPress-site into it?
Then install the plugin “All-in-one WP-migration” to the two WordPress-sites /wp2
With this plugin you can export all (content+database) from old URL (downloading to your pc) and import this to the new (uploading from your pc).Forum: Fixing WordPress
In reply to: Unable to find where in WordPress to edit section of homepageI’m sorry: I’m still not familiar to Elementor, so I can’t answer your question.
If you will use Additional CSS with: .featured-products {display:none;}
then maybe you want to add some more additional css, to avoid some resulting empty space.Forum: Fixing WordPress
In reply to: Unable to find where in WordPress to edit section of homepageThe section has class “featured products”. Can’t you find this term when editing the homepage? Otherwise a rough method maybe by using “Additional CSS”:
.featured-products {display:none;}Forum: Fixing WordPress
In reply to: WordPress onepress pagina terugzetten naar oudere versieZo te zien is het probleem al opgelost: de URL https://www.sparkleminds.nl/home linkt direct door naar https://www.sparkleminds.nl
Forum: Fixing WordPress
In reply to: How to create 2 versions of all pages and posts on a site?Did you read this article?
Forum: Fixing WordPress
In reply to: changing look of social media icon??
Above is the ORIGINAL code in your own original style-sheet.
You should change some values in the Additional css. I think by trial and error.
Right-click on your webpage, exactly on the Linked-In-icon, and choose “Inspect”. Under the CSS-tab you can change the styles you want. For instance, try width=50px and height=50px