• My Blog : https://www.ivwomen.com
    I need to do the following modification :
    1) delete
    ?Skip to main content
    ?Skip to secondary content (sidebar)
    2)shift search box to upper right corner.
    3)shift “Home” “About” below the picture.

    my theme style.ccs below

    [CSS moderated as per the Forum Rules. Please post a link to your site instead.]

Viewing 7 replies - 1 through 7 (of 7 total)
  • You need to edit header.php for that I believe. In all cases, it’s not in the CSS file ^^

    Definitely an html/php solution, not CSS. Open header.php and sidebar.php and arrange the code to suit your needs.

    Thread Starter ivwomen

    (@ivwomen)

    Thanksssssssss

    Through header.php i managed to delete (1) .

    BUT unable to create a black headerbar above the pricture/photo and arrange in one level “Home”, “About” at the left side and “Search” at the right end side .

    I tried to do through header.php and sidebar.php but no luck.

    Is ther other option i should try.

    Appriciate you help.

    You have to write your code in header.php and sidebar.php as per your requirement.

    Thread Starter ivwomen

    (@ivwomen)

    Thank you BUT I’m Thank you BUT I’m completely new in wp world.

    Could you pls tell me which code i should write .

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”&gt;
    <html xmlns=”https://www.w3.org/1999/xhtml&#8221; <?php language_attributes(); ?>>
    <head profile=”https://gmpg.org/xfn/11″&gt;

    <meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />

    <title><?php if (function_exists(‘seo_title_tag’)) { seo_title_tag(); } else { bloginfo(‘name’); wp_title();} ?></title>

    <link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
    <link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />

    <link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
    <?php wp_head(); ?>

    </head>
    <body>

    <div id=”wrapper”>

    <div id=”header”>
    <ul id=”skip”>
    <div id=”divSearchForm”>

    <form method=”get” id=”searchform” action=”<?php bloginfo(‘url’); ?>/”>
    <div>
    <input type=”hidden” value=”1″ id=”IncludeBlogs” name=”IncludeBlogs”/>
    <input type=”text” name=”s” class=”txt” value=”Search Keywords” onfocus=”document.forms[‘searchform’].s.value=”;” onblur=”if (document.forms[‘searchform’].s.value == ”) document.forms[‘searchform’].s.value=’Search Keywords’;” />
    <input type=”submit” id=”searchsubmit” value=”Search” />
    </div>

    <li<?php if(is_home()) echo ‘ class=”current_page_item”‘ ?>>/”>Home<?php wp_list_pages(‘title_li=’); ?>

    <div id=”header-bg”>

    <h1 id=”logo”>“><?php bloginfo(‘name’); ?> <span><?php bloginfo(‘description’); ?></span></h1>
    <div id=”navcontainer”>
    <ul id=”navlist”>
    </div>
    </div>
    </div><!– end #header –>
    <div id=”container”>
    <div id=”content”>

    Thread Starter ivwomen

    (@ivwomen)

    Forgot to include sidepar.php codes :

    </div><!– end #content –>

    <div id=”sidebar”>

    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘Sidebar 1’) ) : ?>

    <h2>Categories</h2>

      <?php wp_list_categories(‘show_count=1&title_li=’); ?>

    <h2>Meta</h2>

      <?php wp_register(); ?>

    • <?php wp_loginout(); ?>
    • <?php wp_meta(); ?>

    <?php endif; ?>
    <?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘Sidebar 2’) ) : ?>
    <h2>RSS</h2>

    <h2>Blogroll</h2>

      <?php wp_list_bookmarks(‘categorize=0&title_li=’); ?>

    <?php endif; ?>

    </div><!– end #sidebars –>

    Thread Starter ivwomen

    (@ivwomen)

    Appricate it someone answer me.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Please Please someone help me!!!!!’ is closed to new replies.