10tklz
Forum Replies Created
-
I’m not sure if I should maybe make this a new separate forum entry, but it’s related so here goes: What about custom taxonomies? Is it just as easy to add those?
Forum: Themes and Templates
In reply to: [Customizr] Remove widget title iconsI’m glad it worked out for you!
Forum: Themes and Templates
In reply to: [Customizr] Remove widget title iconsHe had been making the changes in the Custom CSS of the Customiz’it! menu. For some reason they weren’t all taking.
Forum: Themes and Templates
In reply to: [Customizr] Remove widget title iconsIf you place this in Custom CSS
.widget h3:before {color: #fafafa}it will change those icons to the color of the background rendering them invisible. Alternatively you can try this .widget h3:before {color: transparent} which makes the icons transparent so it doesn’t matter what color the background is. I’m not sure how well supportedtransparentis in older browsers.Forum: Themes and Templates
In reply to: How important is jetpack? current theme uncompatible with itNo. Getting rid of Jetpack is fine. Jetpack is a plugin with many useful functions, most of which can be replicated by other plugins. Many sites do not use it and some only use a few of its functions. Don’t worry. Are there any particular functions you are concerned about?
Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)Hmm… strange… try this
.round-div { border-color: #0088cc !important}Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)If you check my link again you will see I have changed the color. This time the CSS I entered was this
.round-div {border:104px solid #0088cc}
Does that work for you?Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)The color that I changed to orange on my site is a border which is styled through CSS. Can you post a link to your site in this thread?
Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)You placed the code within the “Custom CSS” text field? And after saving it had no effect whatsoever?
Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)Ok, the CSS for that is
.round-div { border-color: #f78c40 }
You just need to enter the hex code for whatever your current theme background is.Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)Like what I have here? http://107.21.230.51/
Forum: Themes and Templates
In reply to: don't show "featured thumbnail" before postAn easy solution might be not to use Featured Image but to simply insert the image into the post at the top.
Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)For example, if you look at what I have done here http://107.21.230.51/ in the “Custom CSS” I added:
.round-div { background-color: #00008B; }In place of the hex code for dark blue
#00008Byou can enter the hex code for whatever color you wish.Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)For example, if you look at what I have done here http://107.21.230.51/ in the “Custom CSS” I added:
.round-div { background-color: #00008B; }In place of the hex code for dark blue
#00008Byou can enter the hex code for whatever color you wish.Forum: Themes and Templates
In reply to: [Customizr] Change background color to 3 circles (feature pages)As @esmi said you really need to create a child theme which can be read about here: Codex – Child Themes or through the “Customiz’it!” menu down at the bottom there is an entry “Custom CSS”. There you can place your own CSS to change colors etc.