keysuuh
Forum Replies Created
-
The dots are annoying :/
Forum: Themes and Templates
In reply to: Search bar /Results not working?!!thank you very much Andrew
Forum: Themes and Templates
In reply to: Search bar /Results not working?!!I actually just added the search form.
I’ve been trying to build a theme from scratch…Forum: Themes and Templates
In reply to: Search bar /Results not working?!!I’m guessing I just post this url for search.php HTML?
https://pastebin.com/d0nHgR2kForum: Themes and Templates
In reply to: Search bar /Results not working?!!https://keihead.com/test – my site.
Forum: Themes and Templates
In reply to: Search bar /Results not working?!!Please post the site url so I can show my search.php html
Forum: Themes and Templates
In reply to: Left Div won't show up!the reason I want the ul list to have an id or class is to seperate the top nav from any other ul lists
Forum: Themes and Templates
In reply to: Left Div won't show up!but if I delete class=”nav” on all 4 sections of the navigation and delete .nav from the stylesheet it ends up working…why is that?
Forum: Themes and Templates
In reply to: Left Div won't show up!and i tried to fix the errors i switched ul id=”nav” to ul class=”nav”
but now the whole style for the ul list doesn’t even work -_-Forum: Themes and Templates
In reply to: Left Div won't show up!on the news page I actually do have another column.
As I said before I have a “left_column” div to replace the sidebar.
I posted part of the html to the news template…
Used float: left; for that specific div.
here is the CSS for the content (container) and the two divs I’d like to float…#content { background: #fff; width: 950px; padding: 15px; margin-top: 25px;} #right_content{ width: 600px; float: right;} #left_content { width: 200px; float: left; }
Forum: Themes and Templates
In reply to: Left Div won't show up!Also the background to the “content” div is as wide as the div but the height is killing me. I don’t understand why the height of the div doesn’t expand to the end of all content…
Forum: Themes and Templates
In reply to: Left Div won't show up!oh yeah and I widgetized the left_content,
here is the html:<div id="left_content"> <?php if (function_exists('dynamic_sidebar') && dynamic_sidebar('news')) : ?> <?php endif; ?> </div>
Forum: Themes and Templates
In reply to: Left Div won't show up!a piece of the CSS:
#content { overflow: hidden; background: #fff; width: 950px; padding: 15px; margin-top: 25px;} #right_content{ width: 600px; float: right;} #left_content { width: 200px; float: left; }
Forum: Themes and Templates
In reply to: Footer overlaps content instead of staying underneath…Ran into another problem…
the footer looks perfectly fine on the news page, there are blog entries and then the footer appears AFTER the entries.
But if you click the links to the other pages there is no content yet,
and so I guess without large enough content the footer went back up the page. Instead of staying at the way bottom!!!!Forum: Themes and Templates
In reply to: Footer overlaps content instead of staying underneath…I think I resolved this…
Positive thre was some other way to do so…
But I ended up taking my Footer Div and moving it under the content div instead of staying inside the content Div.
Then I made the footer position: Relative; instead of absolute.
and now the footer is where I’d like it to be ??If there are any other solutions PLEASE post!