zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to remove the footer text EvoLve 2.0.4the functions file in the path I posted above
Forum: Themes and Templates
In reply to: Twenty Eleven post excerpt – eliminate "Continue reading "You’re probably using a plugin to display them, if there isn’t an option in the plugin for this it’s hard to answer without seeing the site.
Forum: Themes and Templates
In reply to: Problem with current page hover – WeaverIIWouldn’t just changing the above code I posted to #FFFFFF work? I find menus can be confusing with the hover on/off active and submenus so maybe I’m totally wrong>.<
Forum: Themes and Templates
In reply to: Problem with current page hover – WeaverIICould you post what CSS you are using for the menu so far? Please also add any options you’ve choosen within Weaver admin that control the menu colors.
Forum: Themes and Templates
In reply to: How to remove the footer text EvoLve 2.0.4It’s on line 208 of wp-content/themes/evolve/library/functions/functions.php
Search for id=”copyright”
Forum: Themes and Templates
In reply to: How to remove the footer text EvoLve 2.0.4Is this a free theme or a paid theme?
Forum: Themes and Templates
In reply to: How to remove the footer text EvoLve 2.0.4I don’t have that theme installed so I can’t look at the templates, but you could always hide it with css using display: none; on the proper class.
Forum: Themes and Templates
In reply to: How to remove the footer text EvoLve 2.0.4Here’s a thread on how to do it
http://wordpress.org/support/topic/remove-from-footer-evolve-theme?replies=14Forum: Themes and Templates
In reply to: [Twenty Ten] [Theme: Twenty Ten] Sidebar fontsYou should start off by creating a child theme if you want to make changes to Twenty Ten. This will prevent your changes from being overwritten if it’s ever upgraded.
Codex guide – http://codex.wordpress.org/Child_Themes
My own guide – http://zeaks.org/child-theme-basics/I crated a starter child theme for you, just upload and activate, then you can add all your changes to it instead of Twenty Ten.
http://zeaks.org/soulstyle-theme.zipOnce you have done that, open style.css and add the css to change the fonts. font-family changes the font, font-size changes the size
List of families http://www.fonttester.com/help/list_of_web_safe_fonts.htmlThis will change the font in the text widget
.textwidget p { font-family: font-family: Arial, Helvetica, sans-serif; font-size: 14px; }This will change the active font in the other widgets
.widget-area, .widget-area a:link, .widget-area a:visited { font-family: font-family: Arial, Helvetica, sans-serif; font-size: 14px; }Add them both to the style.css, and save it. Change the font to whatever you want, and the size to whatever you want. You can edit the style.css in Appearance > Editor
Forum: Themes and Templates
In reply to: twentyten sidebar font size its killing me!This should let you change the sidebar fonts
.widget-area, .widget-area a:link, .widget-area a:visited { } .widget-title { }I did look at this page, I guess you have WordPress integrated into your html site.
Forum: Themes and Templates
In reply to: Problem with current page hover – WeaverIILooks liek this is what’s causing it to stay green
.menu_bar .current_page_item > a, .menu_bar .current_page_ancestor > a { color: #008C82 !important; }Forum: Themes and Templates
In reply to: [Twenty Ten] [Theme: Twenty Ten] Sidebar fontsFirst one should change the text in the text widget, second one should change the text in the others.
.textwidget p { } .widget-area, .widget-area a:link, .widget-area a:visited { }Forum: Themes and Templates
In reply to: Making a Nav for a One Page Scrolling ThemeI’m not familiar with how this theme works, but maybe the menus need to be setup differently in order to use the scrolling feature. I’d check the theme instructions, or contact the author.
Forum: Themes and Templates
In reply to: Drop down or links to pagesIf your theme supports 3.0 menus then you can setup menus and submenus however you like. Check this page for mroe info http://codex.wordpress.org/Appearance_Menus_Screen
Your first choice would involve creating a page, then adding links to your recipes on that page.
Either way is not hard to do.
Forum: Themes and Templates
In reply to: Can I recover my site content after theme upgrade?Upgrading or changing the theme woudln’t remove your content. Check the posts section in Admin, see if your posts are still listed. If they are, change the theme to Twenty Ten or Twenty Eleven and see if they display.