irengba
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Question about changing themesI think you better setup wordpress locally and download your theme and make the necessary changes and then upload your changes.
Forum: Themes and Templates
In reply to: Css bugs<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_directory’); ?>/otherstyle.css” type=”text/css”/>
For IE.
<!–[if IE]>
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_directory’); ?>/forie.css” type=”text/css”/>
<![endif]–>Goto Admin and click on “Settings > Reading“.
Under “Front page displays” select the “A static page (select below)” radio button.
Now you select your “Front page” and “Posts page” from the select drop down. And save.Forum: Themes and Templates
In reply to: Is It Possible To Hide A Theme's Stylesheet? Please Advise.Its no.. never.. Why you want to do that?
Forum: Themes and Templates
In reply to: Can't remove website title from custom headerInclude this in your stylesheet.
#header h1, #header h3{ display:none }
OR
There also another way to do this by removing the tag from the source file.
search for ‘<?php bloginfo(‘name’); ?>‘ and delete. Make a backup if you are going with this option.
If you are not very familiar with wordpress go with the first option.
Forum: Themes and Templates
In reply to: Is there a theme/plugin that does…BODA82, Your link is very useful. Thanks for sharing..
Forum: Themes and Templates
In reply to: Can't remove website title from custom headerCan you post your link?
Forum: Themes and Templates
In reply to: how to call for a different sidebar on page.phpPaste these code in the functions.php after the if statement
if ( function_exists('register_sidebar') ) register_sidebar(array( 'name'=>'Custom-Sidebar', 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '', ));
Create a php page sidebar-custom.php and paste the following code
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Custom-Sidebar') ) : ?> <?php wp_list_categories('title_li=' . __('Categories:')); ?> <?php endif; ?>
Now call in any of the page where you want the sidebar to appear.
<?php get_sidebar('custom'); ?>
Forum: Themes and Templates
In reply to: Date doesn’t showTry this <?php the_time(‘d/m/Y’); ?>
Forum: Themes and Templates
In reply to: Show Last Post With Permalink To Previous EntryNot sure if this will help.
Check out this link https://codex.www.ads-software.com/Template_Tags/get_postsThe code has to be inside the wordpress loop.
Forum: Themes and Templates
In reply to: Outline only in Firefoxuse this in your css..
#hd h1 a img{
border:none !important;
}Forum: Themes and Templates
In reply to: Outline only in Firefoxlinks to your site..
Forum: Fixing WordPress
In reply to: Unable to change Permalinks of my BlogGive this a try…. Set the “Custom Structure” to “/index.php/%postname%”
Forum: Themes and Templates
In reply to: How to change the white current background on this themepaste this….
.nav ul li.current-cat a, .nav ul li.current_page_item a, .nav ul li.current_page_parent ul li.current_page_item a, .nav ul li.current-cat-parent ul li.current-cat a {
background-color:none !important;
}.nav ul li.current-cat a, .nav ul li.current_page_item a, .nav ul li.current_page_parent ul li.current_page_item a, .nav ul li.current-cat-parent ul li.current-cat a {
color:#0000FF !important;
}Forum: Fixing WordPress
In reply to: Showing Blog posts by Date – latest entry at topUse <?php the_time(‘F j, Y’); ?>