Minnow Legbone
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Customize search results pageI understand I will create a search.php in my child theme. What I’m asking for is what code needs to be changed and how?
Forum: Themes and Templates
In reply to: page titles cut off in IE7Looks like the div.entry-content is what’s overlapping, but I don’t think it has a background color assigned to it.
Forum: Themes and Templates
In reply to: Customize search results pageI have a child theme.
Forum: Themes and Templates
In reply to: page titles cut off in IE7Wouldn’t that mess up the positioning of my content?
Forum: Themes and Templates
In reply to: Change how search results are returnedfound the solution
http://www.craniumstorm.com/how-to-move-a-wordpress-site
very easy step by step how to guide.
Forum: Fixing WordPress
In reply to: Accidentally changed directory in wordpressfound the solution
http://www.craniumstorm.com/how-to-move-a-wordpress-site
very easy step by step how to guide.
Forum: Themes and Templates
In reply to: Change how search results are returnedI just completed my wordpress site and was attempting to move it out of the “testsite” directory I had it in. I went into the wordpress settings and changed /testsite/wp-admin to just /wp-admin and then moved all my files on the server out of the testsite folder. Now I have parsing errors and I can’t get back to that page to correct this because the browser keeps going to wp-admin instead of testsite/wp-admin. So what file do I need to change to get back to testsite/wp-admin?
thanks
Forum: Themes and Templates
In reply to: Change how search results are returnedHmmm…. no luck with the IE plug in.
I did figure out the search results issue. In the admin panel>settings>reading you can set how many posts are displayed.
Forum: Themes and Templates
In reply to: Change how search results are returnedCan I specify width and height in the style sheet or does it have to be in the html?
Forum: Themes and Templates
In reply to: Change how search results are returnedThanks Danny. Much appreciated. I will try your suggestions.
Forum: Themes and Templates
In reply to: Change how search results are returnedAlso, if you use IE to view the site, my nice neat rows of clocks are all messed up. The site renders fine in all other browsers I’ve tried. Any suggestions?
Forum: Plugins
In reply to: Modify search resultsOops. Forgot to post the addy.
Forum: Themes and Templates
In reply to: Centering content twenty eleven themeThis part
#content div {
float: left;
}is for all pages. It messes up the layout of the other pages if I remove it.
The “#table-content” is a div I added around the table. I thought I could center the contents of this div, which is the table.
Forum: Themes and Templates
In reply to: Centering content twenty eleven themeAdded this to my child theme CSS
#table-content {
margin-right: auto;
margin-left: auto;
}No luck. There must be something else overriding it.
Forum: Themes and Templates
In reply to: Twenty Eleven drop down menu sub menus not clickableOops…
Position:Fixed isn’t the right choice.
Absolute works, but then you also have to assign a z-index value to the search bar.
/*Position of drop down menu*/
nav#access
{
z-index:8888;
position: absolute;
}/*search bar position and size*/
#branding .with-image #searchform
{
z-index:9999;
}