robseipp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Help with Magazine themeuse a validater like css lint/ and it’ll show if you missed a semi-colon or whatever.
Forum: Themes and Templates
In reply to: How can I get my corners rounded#page-wrap { border-style: solid; border-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 1px; border-color: #dedede; -moz-border-radius: 20px; -webkit-border-radius: 20px; -khtml-border-radius: 20px; border-radius: 20px; }That’s what I use. It works in everything except IE. Still trying to figure that one out.
Forum: Themes and Templates
In reply to: Table Background ImageI didn’t read your post fully and provided a solution you already tried. idk how to delete posts lol. It’s odd though cause it’s working on my end. Try it using an external stylesheet or try adding
<?php bloginfo('stylesheet_directory'); ?>/
so it would look like
<td background="<?php bloginfo('stylesheet_directory'); ?>/images/logo.png" alt="" id="logo">Forum: Themes and Templates
In reply to: Table Background ImageForum: Themes and Templates
In reply to: Getting rid of header/title text on site but keeping it for seoin the css just put something like
#header {display: none;}
just tested it with my site and worksForum: Themes and Templates
In reply to: adding logo to my siteThis is what I have in mine and it serves me pretty well
<div id="header"> <img src="<?php bloginfo('stylesheet_directory'); ?>/images/logo.png" alt="Rob Seipp Logo" id="logo"/> </div>Forum: Themes and Templates
In reply to: SEO theme and featurebest plugin is “all in one seo”
there are others though. google that one and i’m sure you’ll stumble onto many other helpful plugins. As far as themes go, I don’t think any theme takes priority over another. it’s basically just the content like image alt tags or links or meta keywords etc.Forum: Themes and Templates
In reply to: Theme Titledelete the entire img src line and just type something like
<h1>This is my header</h1>in it’s placeForum: Themes and Templates
In reply to: Theme Titlein the header.php you will see, at the bottom,
<div id="page-wrap" class="clearfix"> <div id="main-content"> <img src="<?php bloginfo('stylesheet_directory'); ?>/images/logo.png" id="logo" alt="" />name your logo “logo.png” and place it in the images folder (it will replace the one already in there). if your logo is a different name or a .jpg simply rename the “logo.png” in the code to something like “mylogo.jpg” or whatever it is
Forum: Themes and Templates
In reply to: HEADER EDITINGin the header.php you will see, at the bottom, <div id=”header”>. delete what is after that till the </div> then add:
<a href="<?php bloginfo('url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/header2.png" alt="Rob Seipp Logo" id="logo"/></a>mine looks like
<div id="header"> <strong><a>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/header2.png" alt="Rob Seipp Logo" id="logo"/></a></strong> </div>delete everything between <div id=”top” class=”clearfloat”> and the </div> after cat-5. might do the trick
oh and if you wanna just get rid of the “Browse Categories” part and not the links, only delete the img src under <div id=”middle” class=”clearfloat”>. hope that helps