NamLee
Forum Replies Created
-
Hi hybrid,
Try adding this to child theme style.css file
a { text-decoration: underline; }
Good luck!
Forum: Themes and Templates
In reply to: Change post title font on Adelle theme?Hi als,
Try adding this
.article h2.post-title { font: normal 1.6em Quicksand, Helvetica, Arial, sans-serif; }
Good luck!
Forum: Themes and Templates
In reply to: [Iconic One] How to increase the width of sidebar?Hi mylinux,
oh no. don’t try add these customize to the parent theme stylesheet file. if you do that, all your customize will lose when the theme update. try add those to CHILD style.css file.
to create child theme, read https://codex.www.ads-software.com/Child_Themes
You just need read “How to Create a Child Theme” section. if you want, of course, you can read all article.
It’s very easy to create child theme. After you create it, active this child theme, not parent theme
Then put all code above into this child theme style.css file which you have just create. It will works.
Let me know if you success.
Good luck!Forum: Themes and Templates
In reply to: [Iconic One] How to increase the width of sidebar?Hi mylinux,
To increase the size of sidebar, you could have 2 common ways.
First, decrease the size of article, then increase the sidebar.
Second, increase the size of whole site, so that the size of sidebar increase according because the width of them (the sidebar and article) set to % not px.So i will do with second method
Try adding this to child theme style.css file.site { max-width: 1140px; }
with the code above, the width of whole site grow and of course, the sidebar too. But if you want the sidebar increase more. You can continue add this
.site-content { width: 60%; } .widget-area { width: 31.8457%; }
I assume that you want these value, but play around with these value until you get your desire result
NOTE: You can use these default value to get better idea
.site { max-width: 1040px; } .site-content { width: 64.1042%; } .widget-area { width: 27.7417%; }
Good luck!
Hi vandiary,
Please check your site. I can’t see anything except a bunch of china text.
Forum: Themes and Templates
In reply to: [Spun] Change FontHi Kirsten,
Try adding this to child theme style.css file
.entry-title, .entry-title a { font-family: "American Typewriter", serif; }
Good luck!
Forum: Themes and Templates
In reply to: [Liquorice] social media icons in nav barHi Hilary,
You should create your own folder in your computer then upload it to server by filezilla or cyberduck.
Forum: Themes and Templates
In reply to: How to Increase the width of my posts?Hi chandima,
You should make a child theme and then all your customization should add to that.
To create child theme, you could read this article
https://wp.tutsplus.com/tutorials/theme-development/child-themes-basics-and-creating-child-themes-in-wordpress/Let me know if you need help.
Forum: Themes and Templates
In reply to: [Leaf] How to remove Image Padding and Borders?Hi Ed,
Like john said, you should add this to your child theme style.css file.
And to override the default, you should try to get specific selector and follow is 2 declarationborder-width: 0; padding: 0;
Forum: Themes and Templates
In reply to: Foorter ColorHi Ricci,
Try adding this to child theme style.css file
#footer #menu-footer-navigation li a { color: #f15a23; } #footer #menu-footer-navigation li a:hover { color: #868686; }
I use very specific selector so it will override default style.
#footer #menu-footer-navigation li a {color: #f15a23;} is the color of navigation in footer without hover
#footer #menu-footer-navigation li a:hover {color: #868686;} is the color of navigation in footer when you hover to it. So feel free to use any color you want until you get your result.
Good luck!
Forum: Themes and Templates
In reply to: [Customizr] Text Padding IssueHi matt,
Try adding this
article.row-fluid { padding: 0 20px; }
20px is the padding for the left and right. so you can change it until you get your desire result.
Good luck!
Forum: Themes and Templates
In reply to: [zAlive] Color schemesHi estreller,
You can post link to your site, so I think I can help
Forum: Themes and Templates
In reply to: [Liquorice] social media icons in nav barto create child theme
you can read this article.
it’s basic and easy to create.
All your customization should add to this child theme file because it won’t lose when the theme update.let me know if you get trouble. don’t hestinate.
Good luck!
Forum: Themes and Templates
In reply to: [Liquorice] social media icons in nav barOh!. You should add this to child theme style.css file.
Forum: Themes and Templates
In reply to: [Liquorice] social media icons in nav barHi Hilary,
try adding this
li#menu-item-816 { float: right; } li#menu-item-816 a { display: block; background: url('img/twitter.png') no-repeat; text-indent: 9999px; width: 90px; }