• Hi, this is my first time installing WordPress and need some help with the theme I installed called “Hamasaki” downloaded from: http://www.jauhari.net/themes/hamasaki. My website is http://www.lillionaire.com

    My questions are:
    1. How do I get rid of the “Site Admin” link at the top of the page?
    2. How do I change the green bar at the top of the page?
    3. How do I get rid of the “Installed by SimpleScripts” at the bottom of the page?
    4. How do I remove the magnifying glass in the Search box at the top of the page?

    Thank you in advance,

Viewing 1 replies (of 1 total)
  • 1. i don’t see the ‘site admin’ link
    2. green bar – in the style.css :

    #top {
    	background: #333;
    	border-top: 5px solid #339900;/*	border-top: 5px solid #58C6F4;*/
    }

    #339900 is the code for green, you can change it to #333 grey as the rest, or choose a new color code.
    3. look in the footer.php for the text ‘installed by..’ and delete the whole line:
    <p class="footer">Installed by <a href="http://www.simplescripts.com" title="One click installs">SimpleScripts</a></p>
    or put your own link in.
    4. in the style.css:

    .search #s {
    	width: 200px;
    	padding: 4px;
    	border: 1px solid #ccc;
    	background: #666 url(images/ico/search.png) 3px 3px no-repeat;
    	color: #ccc;
    	padding-left: 20px
    }
    .search #s:hover, .search #s:focus {
    	width: 200px;
    	padding: 4px;
    	border: 1px solid #ddd;
    	background: #444 url(images/ico/search.png) 3px 3px no-repeat;
    	color: #fff;
    	padding-left: 20px
    }

    delete both times ‘url(images/ico/search.png) 3px 3px no-repeat’.

Viewing 1 replies (of 1 total)

The topic ‘Modifying “Hamasaki” theme – HELP’ is closed to new replies.