egrucza
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Engrave (Lite)] Change colors of the iconsLink color
a:hover { color: inherit }Read more
.themebutton2:hover { background: #333; }Icons
#section-home a:hover .entry-header span { background: #333; }Forum: Themes and Templates
In reply to: [Engrave (Lite)] Change colors of the iconsIcon Color
#section-home .entry-header span { background: #EC4C4C; }Read More Color
.themebutton2 { background: #EC4C4C; }Link Color
a { color: #EC4C4C; }Changing the color value will not change the color of the hover.
Forum: Themes and Templates
In reply to: [Tonic] changing menu highlights colorsYou can change the color using CSS. You will want to make a child theme, or use a custom CSS plugin though (otherwise your changes will be lost when you update).
It looks like the code for the blue is
.nav li.current-menu-item > a, .nav li.current-menu-parent > a { color: #fff; text-shadow: none; background-color: #428bca; }If you use a custom CSS plugin, you should be able to just copy and paste that code. You can then change the value where it says background-color to what ever hex-value you’d like.
Forum: Themes and Templates
In reply to: [Tonic] changing menu highlights colorsCould you please post a link to your site?
Forum: Themes and Templates
In reply to: [Engrave (Lite)] Change colors of the iconsCould you post a link to your site? It is possible to change the colors of the links using CSS (you will need to use a child theme or custom css plugin though or your changes will be lost if you update the theme).
As far as the icons go, it will matter if they are pure css icons or images.
Forum: Themes and Templates
In reply to: [Customizr] Customizr: Making logo largerHmm your logo is still not showing up. It’s looking for the image at http://localhost/wp-content/uploads/2013/11/smilesformiles.png and I’m guessing on the live site it shouldn’t be at localhost. You might want to try re-uploading the logo image now that it is on the live version.
Forum: Themes and Templates
In reply to: [Vantage] Vantage: Header Grey, Call Us: DarkIt looks like you are not using a child theme. You can make the changes you want through css, but you’ll want to use a custom css plugin or create a child theme. If you make css changes to the core files they will be overwritten if you update the theme.
Forum: Themes and Templates
In reply to: [Customizr] Customizr: Making logo largerYour logo is not loading, if you can fix that I can look at the css and try and help.
Forum: Themes and Templates
In reply to: [Buttercream] Create rollover CSS to Navigation?You’ve left your #main open. The bottom of your stylesheet should look like this. Of course keeping #sidebar as is.
#main { background:#FFF; } #header-menu li.menu-item a:hover { color: #05F475; } #nav_menu-2 a:hover { color: #05F475; }The first link is being used to style your jQuery UI elements on your site and the second is used for outside fonts I believe.
Forum: Themes and Templates
In reply to: Which zip file for a new theme?http://codex.wordpress.org/Themes I think this should help.
Forum: Themes and Templates
In reply to: [Buttercream] Create rollover CSS to Navigation?You should just be able to add this to the bottom of your css file.
#header-menu li.menu-item a:hover { color: green; } aside.widget ul li a:hover { color: green; }Forum: Themes and Templates
In reply to: [Buttercream] Create rollover CSS to Navigation?#header-menu li.menu-item a:hover { color: green; }You’ll need to replace green with the hex value for the actual color green you want to use.
Edit: If you want the sidebar menu to hover green as well you can use
#nav_menu-2 a:hover { color: green; }for that.
Forum: Themes and Templates
In reply to: Creating Post Gaps via Border BottomI’d say the line should not extend all the way (which of course is a design choice). If you wanted to control the width, I think you’d have to create a new nested div specifically for the border. I could be wrong, but I’m not sure how you could expand that border length as is.
Forum: Themes and Templates
In reply to: Creating Post Gaps via Border BottomCould you please post a link to the site/page?