This post contains affiliate links, marked by an *
Customise Illdy without losing your mind.
Need a domain? Get a .design, .ink or .wiki domain for $5!*
I was a total WordPress novice when I decided to make the leap and switch this site over from Weebly to WordPress. Honestly, I had no idea what I was doing, and fumbled around until I found a theme I loved – Illdy.
It was free, which was amazing, as it gave me the best-looking website I’d ever owned; but of course there were some things that I needed to tweak as I grew more confident with code.
Here are some of the css code snippets I’ve used to customise Illdy for my website.
Adapting to Illdy updates
I’ve dreaded each update to the Illdy theme, because there’s always some major change to cope with. This means there’s new codes and changes to add to this post, so bear with me as I add them soon. And yes, I actually created a child theme for Illdy to prevent the changes, but somehow I couldn’t get my child theme to respond fully to all the changes I’d made… so I had to stick to the developer’s theme.
But then, the last update made my site look horrendous, and I went running back to my child theme. It’s meant that some of my links won’t change to the right colour, but I’m trying to work on more important things at the moment… in the grand scheme of things, a few yellow hover links don’t make a difference.
Hey, I’m still a novice; I just do my best.
The CSS codes to change Illdy, and what they do.
Change colour of links
.markup-format a { color: red; }
Remove link underline
.markup-format a { text-decoration: none; }
Remove yellow dots from jumbotron
#header .bottom-header span.span-dot { display: none; }
Like this post? Check out the resources I use for creating and managing my websites!
Change contact form background colour
#contact-us { background-color: #ffffff !important; }
Change contact form name, email and subject background and border colours
#contact-us .section-content .wpcf7-form p .wpcf7-text { background-color: #ffffff;border: 1px solid #baa9a9; }
Change contact form message box background and border colours
#contact-us .section-content .wpcf7-form textarea { background: #ffffff !important;border: 1px solid #baa9a9; }
Change colour of the first jumbotron button
#header .bottom-header .header-button-one{ line-height: 63px; background: #e83904; border: none; }
Change hover colour of the first jumbotron button
#header .bottom-header .header-button-one:hover{ background: #1a2226 }
Change colour of the second jumbotron button
#header .bottom-header .header-button-two { background: #1a2226; }
Change hover colour of the second jumbotron button
#header .bottom-header .header-button-two:hover { background: #e83904; }
Change colour of widget lines
.widget .widget-title:before { background-color: #e83904; }
Change hover colour of social share widget
.widget ul li:before { color: #e83904; }
Change colour of “read more” link under blog preview
#latest-news .section-content .post .post-button { color: #e83904; }
Change colour of “read blog” button
#latest-news .latest-news-button { background: #e83904; }
Change colour of “read more” button on blog page
#blog .blog-post .blog-post-button { background-color: #e83904 !important; }
Change colour of author icon on blog post
#blog .blog-post .blog-post-meta .post-meta-author .fa { color: #e83904; }
Change colour of author text on blog post
#blog .blog-post .blog-post-meta .post-meta-author { color: #888; }
Change colour of date published icon on blog post
#blog .blog-post .blog-post-meta .post-meta-time .fa, #blog .blog-post .blog-post-meta .post-meta-categories .fa { color: #e83904; }
Change colour of comments icon on blog post
#blog .blog-post .blog-post-meta .post-meta-comments .fa { color: #e83904; }
Remove/change padding on home page
body.home.page section.content-area { padding-top: 0; }
body.home.page section.content-area { padding-bottom: 0; }
body.page .post-inner-content { padding-bottom: 0; }
body.page .post-inner-content { padding-top: 0; }
Remove/change padding on about section
#about, #static-page-content { padding: 10px 0 0px 0; }
Remove/change padding on latest news/blog section
#latest-news, #static-page-content { padding: 0px 0 0px 0; }
Remove/change padding on contact us section
#contact-us, #static-page-content { padding: 0px 0 0px 1; }
Remove title from blog titles and page titles
#header .bottom-header h1 { display:none; }
Change display size for mobile devices
@media only screen and (max-width: 768px) { #header { background-attachment: initial !important; } }
@media only screen and (max-width: 480px){ #header .bottom-header h2 { font-size: 30px; line-height: 1.2; }
.top-header img { width: 250px; }
#header .bottom-header { padding-top: 50px; padding-bottom: 50px; } }
Hide date published
.blog-post .blog-post-meta .post-meta-time { display: none; }
Hide author
.blog-post .blog-post-meta .post-meta-author { display: none; }
Hide comments
.blog-post .blog-post-meta .post-meta-comments { display: none; }
Change Mailchimp subscribe button text colour
input#mc-embedded-subscribe.button { color: #ffffff }
Change Mailchimp subscribe button colour
input#mc-embedded-subscribe.button { background: #e83904; }
Change contact form submit button text colour
input.wpcf7-form-control.wpcf7-submit { color: #ffffff }
Change contact form submit button colour
input.wpcf7-form-control.wpcf7-submit { background: #e83904; }
Change widget text colour
.widget a { color: #e83904; }
Remove page titles
#blog .blog-post .blog-post-title { display: none; }
The end.
So there you have it – all the codes I’ve used to change aspects of this WordPress theme. I hope it’s been of some use to you… and remember, I’m an artist, not a web developer. This is just my hobby 🙂
Subscribe to my newsletter below for more tips on DIY marketing and web management for creatives!
August 1, 2017 at 10:14 am ·
Hi. I’ve found you Illdy post invaluable! so thank you. I was wondering if you could help me out a little. I’ve setup and customised the Illdy template however, I cannot seem to change the blog sidebar widgets from grey to black. I copied, pasted and altered the code you provide above, however nothing happened. I’m using the “recent posts”, “search” and “text” widgets. Do you have any suggestions?
Thank you!
August 1, 2017 at 1:26 pm ·
Hey there, I’ve used this to change the colour:
.widget a {
color: #000000;
}
I’ll add it to the post as well 🙂
August 9, 2017 at 5:13 am ·
Thanks so much! I’ll try it out. 🙂
August 22, 2017 at 4:14 am ·
Thanks for posting this, and thanks to you I was able to remove the date and author on blog posts. The other problem I’m having and not listed, is how to remove the page titles like HOME and so forth. I’ve searched through numerous colorlib forums on the css code to add, but none of it has worked,
August 22, 2017 at 7:28 am ·
I’ve just done it this way: #blog .blog-post .blog-post-title { display: none;
}
Try it and let me know if it works, I’ll add it to the post 🙂
August 23, 2017 at 3:12 am ·
Thanks for the speedy reply. Unfortunately the code did not remove the page titles. If you have any more suggestions please let me know.
September 9, 2017 at 7:43 pm ·
hi, wich the file we have to change? where are the css of illdy? and where can i change the size of h1, title of the front page? thanxs!
September 14, 2017 at 11:37 am ·
The CSS settings can be accessed through going to your WordPress admin panel, then scrolling down to “Appearance”, then selecting “Edit CSS”. You should be able to find those header settings in the typography section of the “Customise” section (under “Appearance”).
September 13, 2017 at 9:24 pm ·
Hi,
I just went through your post and really appreciate all the codes for this.
Can I ask you one more question that I didn’t see covered in your blog.
It’s about the header for additional pages.
I have uploaded an image that somehow doesn’t show properly on the page.
It’s not interactive.
And there is a title on each page that I’d like to delete but when I do, the title on the main page is gone as well.
Do you have any idea what I can do to change that?
Thank you so much for responding in advance.
September 14, 2017 at 11:33 am ·
Hi there, I had a quick look and I must admit that I’m a bit stumped by your title problem. I’ve taken the titles away on my pages using the codes in the post, but it hasn’t affected the front page. All I can suggest is to copy all your css into a text editor, start from scratch and re-introduce the code that’s likely to work and see what it affects – that’s how I tackle a problem. The header image seems to be a recurring problem for lots of people but Colorlib have a few threads dedicated to it on their support forum. Sorry I can’t help with that!
October 9, 2017 at 8:41 am ·
Hi thanks for the codes, i wish you could also add some codes to change background colours on pages. Thank you once more
October 10, 2017 at 3:45 am ·
Hi, I tried using your code, but it’s not working the way I hoped! I’m trying to remove dead space between the logo and the content. Not sure what to do and my site isn’t live. I do have a screenshot.
December 19, 2017 at 8:41 pm ·
These are great, thanks! Any idea how to change the color of the text “CONTACT” in the contact-us section? Thank you!
December 19, 2017 at 9:27 pm ·
Hi, if you mean the section title, try .front-page-section .section-header h3 {color: #e83904
}
This changes the other title colours though! Not sure yet about an easy change to that section alone.
December 22, 2017 at 7:40 am ·
Hi, I like your post. I was struggled to remove the ” > ” icon or symbol under footer widget area.
For example:
Our workClubNewsAnnouncement
February 1, 2018 at 3:53 pm ·
Really useful post, thanks a lot! Do you know the CSS to change the font size in the title of all of the widgets? i.e. the skills bars, services, etc.
February 6, 2018 at 1:07 pm ·
Hi,
How can I change the menu color ?
February 6, 2018 at 1:12 pm ·
One more thing… how can I change the size of the header itself as well as the fit and size of the image in the header?
March 27, 2018 at 5:46 pm ·
Hello, I am trying to change the description color of my widgets, I am copy-pasting your code into the “additional CSS” area as there is no “edit CSS” link. Assuming those are the same locations, nothing changes after publishing the edits. Am I doing something wrong here? Or has a recent update changed the way things work?
June 18, 2018 at 4:56 pm ·
hi thanks for sharing. I have a request about how to control the menu display on mobile device consistently? ie. on the main screen the menu on mobile has color division but when clicking from any other page the menu display is just plain menu text without color. how can I fix this to be consistent with the color version? thanks
February 28, 2021 at 10:04 pm ·
I really appreciate this article. Quick question since you have experience using this theme. I am trying to change the browser tab. In most wp themes, you handle this via the customizer. However, there is no place in this theme to add your own favicon nor slogan. Are you really stuck with “Just another WordPress Theme” as a slogan?? Thanks again.
March 1, 2021 at 8:53 pm ·
Hi, thanks for commenting. Unfortunately I’m not able to give a direct answer as I’m no longer using the theme myself, so I can’t say how it would be done in its current version. I know those settings were previously customisable so I’m sure they will still be. Hopefully someone with current knowledge will be able to fill in the blanks here.