9bode
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Corpo] FontI looks like google’s “Open Sans”
Forum: Themes and Templates
In reply to: [GovPress] Disabling Commentswhen you edit a page, somewhere towards the middle section there is an area where you can select to show the comments and ping backs!
You have to un-check them!
If you do not see that option, then towards the right top you will see a drop down with screen option! Click on it and you will see some options to check! put a check where it says comments.
once you do that follow the previous step!
hope that helps!
Forum: Themes and Templates
In reply to: [Fruitful] Change the padding?Make sure you have child theme created and then change the codes in css
/*padding to the right side of the content */
.hentry {
padding-right: 20px;
}hope that helps
Forum: Themes and Templates
In reply to: [Customizr] create a post pageI went to your site and i don’t see anything on your home page other then the slider!
So if your setting in reading pan for Front page display to be your latest posts, then your blogs would show up on front page!If you set your home page as static page and blog page as Post page then you will see your posts on the blog page!
Please verify your settings!
Agree with esmi, sorry didn’t mentioned that before.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Change padding in style.cssI just checked your css code and its working correctly in chrome.
Try this code out and change the background color
.feature-content-inner .read-more {
background-color: #79bbff;
text-align: center;
font-family: Bitter;
font-size: 16px;
margin-top: 25px;
-webkit-transition: all 0.6s linear;
-moz-transition: all 0.6s linear;
-o-transition: all 0.6s linear;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
/* border: 1px solid #84bbf3; */
display: inline-block;
height: 40px;
line-height: 40px;
width: 110px;
}hope this helps
9bodeYou are right. The color does not change because it is using the image parameters.
You have to disable the the “background:”
add new line and enter background-color: #7D3535 (or whatever color you like)Hope that helps.
9bodeForum: Themes and Templates
In reply to: [Virtue] Remove borders on single product pageYou can use add “noborder” in your class as class=”pricebox noborder” and
Then in your custom css file you can add
.noborder{
border: none;
}line under the add to cart button can be removed the same way
<div class=”product_meta noborder”>Hope that helps!
Forum: Themes and Templates
In reply to: [Hueman] Changing link colourI tested on your site with just using a{ color: #666; } tag and it seems to work for me!
Where are you entering the code?
Forum: Themes and Templates
In reply to: [Virtue] How to remove border from drop down menuYou can create custom css try
.sf-menu ul {
border-left: none;
border-right: none;
border-top: none;
}hope that helps!
AmitForum: Themes and Templates
In reply to: [Hueman] Changing link colourYou can change the a{ } tag and that shall do the job! If it doesn’t work you can use !important; and that does the trick as well.