SaranR
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme Looks Weird in IE, Fine in Firefox and SafariIts always better to customize wordpress theme after check template file in top browser.
[sig moderated as per the Forum Rules. Final warning!]
Forum: Themes and Templates
In reply to: CSS not applied on pageyou may doesn’t have style for contact details in your style.css file. thats why its not working…
if you have style css for contact details in different css file, you must add the same in your header.php as below,
for example your css name is contact.css
<link rel=”stylesheet” type=”text/css” media=”screen” href=”<?php bloginfo( ‘stylesheet_directory’ ); ?>/contact.css” />
[sig moderated as per the Forum Rules]
Forum: Themes and Templates
In reply to: How to add my Top Menu?just paste below coding into wordpress your theme functions.php file.
<?php add_theme_support( 'menus' ); register_nav_menu('main', 'Main Navigation Menu'); ?>
so now you can see menu option under appearance in wp dashboard. in menu section, you can create menu and customize it.
and
use the below coding for show it in header.php or wherever you want. but change css as per your theme css.
<?php wp_nav_menu( array('menu' =>'Top Navi', 'items_wrap' => '<ul id="menu-primary" class="menu" >%3$s</ul>' ) ); ?>
[sig moderated as per the Forum Rules]
Forum: Fixing WordPress
In reply to: Custom Page Types?I think you have to set a custom page design like custom post in wordpress. if is this your question about?. then here is the answers.
Create custom page desgin as you want and add below mentioned lines in the same at top of the of the page. set “page name” as you want. thats it.
<?php /* Template Name: Page Name */ ?>
Now, you uploaded this custom page php, just upload it to your theme folder and go and add New page, you can see “Templates” in that new page page. there you can choose your custome template for this perticular page.
Hope it will help you surely…
[sig moderated as per the Forum Rules]
Forum: Fixing WordPress
In reply to: Tamil font not shows in Websitehi,
the same for me too…
i have set utf8 in “reading” options.
i can able to view tamil font upto press “publish” button. once i press publish button its shows “???????????????????????”
is there anyone know the solutions for this..
Mr.Rajkanna, have you got the solution?
Forum: Fixing WordPress
In reply to: How do I make the Commentor’s Name Link Open in New Windowhere is the code your required one:
<a href="<?php comment_author_url(); ?>" target="about_blank"><?php comment_author(); ?></a>
Hope you it will work for you
Forum: Fixing WordPress
In reply to: How do I make the Commentor’s Name Link Open in New Window