Hello there, I want help with some problems. a. I've already read the code for how to change the color to the circled fetaure home contents, but it doesn't work when I add a "#809909" color for example. b. To the posts I only want to show the date of the article and nothing else. No category, no author, no archives. c. I need more space to the navigation bar, Half of the menu items change line. Thanx in advance
Hello, Use this code in custom CSS section. Code: .feature_inner_box.third p { color:#809909; } .post_comment { display:none; } li.posted_by { display:none; } li.posted_in { display:none; } li.post_comment { display:none; } Thanks & Regards Pramod
Hello aplusa, Use following code to solve question (b) on Theme options -> Styling setting -> Custom css: Code: .content-bar .post .post_meta .posted_by , .content-bar .post .post_meta li.posted_in, .content-bar .post .post_meta .post_comment{ display: none; } For (a) : If you want to change content color of feature area, use below code: Code: .feature_inner_box h6 a, .feature_inner_box p { color: #809909; } And if you want to change circle background color, use below code: Code: .feature_inner_box .circle { background-color: #129676; } Note: in above code color value is as demo prepose, user your own color code where you desire.
I got your query on your bumped post. Use following code in custom css option for fix this issue: Code: #menu .ddsmoothmenu li { font-size: 12px; margin-right: 10px; } Note: if you need more space, decrease the above code's pixel value.