• Hi.

    I have downloaded and installed a new theme. And over the header, it`s two logos: RSS and Emailupdates. I would like to remove them both.

    Anyone know how I can do that?

Viewing 10 replies - 1 through 10 (of 10 total)
  • There are thousands of WordPress themes. So a link to your site where people can see the theme might result in more responses.

    Thread Starter sunsi55

    (@sunsi55)

    I don`t have a link.
    A little period since I did download it.

    I am now able to remove the RSS and “Email update” buttons.
    This is the code: <li><a href="#" class="emailIco"></a></li></ul>

    But when I remove it, it affects my pages that are listed in the header. They get a new posision. They become to low on my webpage.

    Any tips for getting this correct?

    Try just removing <li><a href="#" class="emailIco"></a></li> or remove <ul><li><a href="#" class="emailIco"></a></li></ul>.

    Thread Starter sunsi55

    (@sunsi55)

    If I remove any of them…

    I get a problem with the loaction of my pages in the header become either to high, or low on my webpage.. But the Email button dissapears tho.

    In that case, you also need to edit your theme’s stylesheet to compensate for the markup you have removed.

    Thread Starter sunsi55

    (@sunsi55)

    Okey.
    And how would I do that? It can`t be that hard I hope ?? ?

    You can edit your theme’s stylesheet via Appearance/Editor. How difficult/easy it is depends upon the theme’s design and your level of comfort with CSS.

    Thread Starter sunsi55

    (@sunsi55)

    Yes.

    I have tried multiple times to edit it via Apperace/Editor now. But I don’t know which line I should remove to get it higher, or if there is anything I should write in the code to get it lower.. </br> dosn`t work..
    GOt any ideas ?? ?

    Thanks for helping!

    can you give your header.php file?

    Thread Starter sunsi55

    (@sunsi55)

    <?php include(TEMPLATEPATH."/config.inc.php");?>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="https://www.w3.org/1999/xhtml">
    
    <head profile="https://gmpg.org/xfn/11">
    
    <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    
    <meta name="distribution" content="global" />
    
    <meta name="robots" content="follow, all" />
    
    <meta name="language" content="en, sv" />
    
    <title><?php if (is_home () ) { bloginfo(?name?); }
    elseif ( is_category() ) { single_cat_title(); echo ' - ' ; bloginfo(?name?); }
    elseif (is_single() ) { single_post_title();}
    elseif (is_page() ) { single_post_title();}
    else { wp_title(??,true); } ?></title>
    
    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
    
    <!-- leave this for stats please -->
    
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php if($db_feedburner_address) { echo $db_feedburner_address; } else { bloginfo('rss2_url'); } ?>" /><?php /* if you put your feedburner into the theme options, the autodiscover will use that instead of the WP default feed */ ?>
    
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    
    <?php wp_get_archives('type=monthly&format=link'); ?>
    
    <?php wp_head(); ?>
    
    <style type="text/css" media="screen">
    
    <!-- @import url( <?php bloginfo('stylesheet_url'); ?> ); -->
    
    </style>
    
    </head>
    
    <body>
    
    <div id="header">
    
    <h1 class="mainHeading"><a href="<?php bloginfo('url'); ?>" title="<?php _e('Home'); ?>"><?php bloginfo('name'); ?></a></h1><ul class="headerMenu">
    
    <li><a href="#" class="emailIco"></a></li></ul>
    
    <div class="clearer"></div>
    
    <div class="TopMenu">
    
       <ul>
    
         <?php wp_list_pages('depth=1&sort_column=menu_order&title_li=' . __('') . '' ); ?>
    
       </ul>
    
    </div>
    
    </div>

    Here it is ??
    thanks for helpiNg! =)

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Remove "RSS" from downloaded theme’ is closed to new replies.