Hi! I have two questions: - Can I change heading color and menu colors (in the primary widget area)? I'd like to change the color of "Chi siamo in breve", "AICRA" and "Le Craniostenosi" from black to #91107D. http://www.aicra.it/chi-siamo - Can I insert a top menu (like contacts, site map) in home page, in the upper part of the page on the right of the logo, smaller than Main Menu? Thank you very much.
1.For your first issue Go to js > custom.js present in your theme directory and remove the code given below Code: //cufone Cufon.replace({ hover: true })('#colRight h2')('.reply',{ hover:true })('h1')('h2')('h3')('h4')('h5')('h6'); Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .page-content .sidebar h4 { color: #91107d; } 2. Unfortunately there isn't a way to do that with our theme unless you custom code something up. Sorry.
thanks for the reply, it's ok! Can I also change the color of sub menu? And the color of the heading of the page? (in http://www.aicra.it/chi-siamo "Chi siamo in breve")
1.For your first issue Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited { color:red; } 2.For your second issue Go to js > custom.js present in your theme directory and remove the code given below Code: //cufone Cufon.replace({ hover: true })('#colRight h2')('.reply',{ hover:true })('h1')('h2')('h3')('h4')('h5')('h6'); Now, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .page-content .content-bar .post .post_title a { color:red; } Inplace of "red" put your color code.
great! a couple of things... The heading's color of "Posts" is ok, still black heading's color of "Pages"... Regarding the submenu, sorry, I have not explained well, I meant submenu on the right, in the primary widget area... Thanks!
Hello, Paste the following code in your custom css Appearance -> Theme Options -> Styling Options -> Custom CSS Code: .sidebar ul li a { color: red; } Inplace of red you can put your color or color code. This will solve your issue.
Thank you! submenu are ok! Do you know how can I change heading color in pages? The following code: .page-content .content-bar .post .post_title a { color:#91107d; changes heading color only in posts...
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: h1, h2, h3, h4, h5, h6{ color:red!important; } .feature-content .feature-item a{ color:red; } Inplace of "red" put your color code.
ok, but in this way I also change homepage heading color, footer heading color, and so on. can I change it only in pages (like in posts)?
Can you please explain your problem with the help of screenshot, where you want to change the color , so that we can give you the exact solution.