jacenty3590
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Spacious] How to change the footerIn child theme you need to include whole
footer.phpand change it or use proper function infunctions.php.Forum: Themes and Templates
In reply to: Blog Title not appearing in browser barTry this code (taken from Twenty Eleven WordPress theme). Should work fine.
<title><?php wp_title('|', true, 'right'); bloginfo('name'); $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; ?></title>Forum: Themes and Templates
In reply to: [Church] Remove Color Change when Hovering on Header MenuHi.
Open
style.cssfile and remove following lines:.omega-nav-menu li:hover, .omega-nav-menu li:hover ul { background-color: #181313; }(lines 673-676)
.omega-nav-menu li ul li:hover { background: #211b1a; }(lines 696-698)
Forum: Themes and Templates
In reply to: [Adaptive Flat] Center absence fix Drag widgetsIn
style.cssset margins of the ad to auto – this should center it.
margins: auto;Forum: Themes and Templates
In reply to: Character missingHi.
Could you provide me whole code fromsidebar.php?Forum: Themes and Templates
In reply to: Changing the Color of Menu TabsCould you provide me code from
style.cssandheader.phpfiles?Forum: Themes and Templates
In reply to: Blog Title not appearing in browser bar@soasmw
You can use bothbloginfo()andwp_title()functions at one time:
<title><?php wp_title(' | ', true, 'right'); ?> <?php bloginfo('name'); ?></title>Forum: Themes and Templates
In reply to: [Oxygen] Oxygen – commentsHere you can find a tutorial about translating themes -> http://www.solostream.com/blog/tutorials/translate-wordpress-theme/.
Forum: Themes and Templates
In reply to: Blog Title not appearing in browser bar<title><?php bloginfo('name'); ?> | <?php bloginfo('description'); ?></title>
Instead of this code try usingwp_title()function.Forum: Hacks
In reply to: Problemas com RedirecionamentoHi.
On this forum you should use English to report your issues. If you want to use Spanish, please post this in Spanish forum (http://es.forums.ww.wp.xz.cn/)