tadhunt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [P2] CSS, text sizeYeah absolutely!
Forum: Themes and Templates
In reply to: [P2] CSS, text sizeBah! Ripped some of my code examples.
<ul></ul>
is an unordered list
<ol></ol>
is an ordered listForum: Themes and Templates
In reply to: [P2] CSS, text sizeAwesome! Good job! Sorry I didn’t get back sooner (I’m at my day job). The difference is following
<p></p> tags represent paragraph tags
is an “ordered list”
is an unordered list (like a bulleted list)
These are all html markup/code.
Good job on digging into the css!
Take care!
Forum: Themes and Templates
In reply to: Menu that sticks to the top of the page?Hrm… that makes it difficult to envision what you are trying to do, but I’ll give it a shot anyways.
I’d change the following defs in style.css:
(to get the banner at the top of the page)
#main_container {
width: 900px;
margin: 0 auto;
padding-top: 0px;
}(to get the header to stay put at the top while you scroll down)
#header {
width: 704px;
float: left;
position: fixed;
}Hopefully that does it for you! Cheers!
Forum: Themes and Templates
In reply to: Changing the header of Limau OrangeThanks for including you link. In the admin panel you’ll find “Appearance” in the left hand column. Click that and go into the editor. If it does not bring you there automatically, navigate into “style.css” section. In there search for the following:
div.hr { height:3px; background:#fff url(images/hr.gif) repeat-x scroll center; clear:both; }
and replace it with:
div.hr { height:3px; background-color:#fff; clear:both; }
That should get rid of the green/orange line at the bottom of the header.
As for your logo you need create one with an image editor. WordPress can’t do that for you unfortunately. Create it to the dimensions you want and upload it to the following location: /wp-content/themes/limauorange/images/
If you change the height of the logo from what it’s set to already (you mentioned wanting to do that), you want to tweak the height of following css definition, again in “style.css”, to a height that accommodates the new logo you created:
#header { height:56px; width:301px; position:relative; color:#000; margin-bottom:3px; float:left; padding:0; }
Hopefully this helps! Good luck with everything.
Forum: Themes and Templates
In reply to: delete Sidebar Text ?Hey there,
Thanks for providing the link to your site. Are you looking to get rid of the sidebar entirely? Or are you looking to get rid of only certain parts of it. There’s a lot of text and ads that appear to be put there by you. Is that correct?
A little more precise info as to exactly what you are trying to get rid of, would be helpful to us helping you.
Thanks,
Tad
Forum: Themes and Templates
In reply to: Menu that sticks to the top of the page?You’re on the right track I think with “position: fixed” but it’d help if we had a link to your site so that we could have a look at what you trying to accomplish. Thanks!
Forum: Themes and Templates
In reply to: [P2] CSS, text sizeThis would be achieved easily via css. Could you provide a link to your site? We all would be able to help you a lot easier if we had that.
Thanks!
Forum: Themes and Templates
In reply to: Changing the header of Limau OrangeHey there!
Could you provide a link to your current site (with the theme installed and image uploaded) so we can see exactly what you are looking to accomplish? It’s hard to imagine the issue you are having without and example to look at.
Thanks!
Forum: Fixing WordPress
In reply to: Removing "Comments Off" from Blog PageYou could open up style.css in you editor and add a “display:none;” to the following def:
.commr {
position: absolute;
right: 0;
top: 0;
text-align: center;
display:none;
}if you’re looking for a quick and dirty way of removing it in your theme. The above options are good, complete solutions. Just thinking my idea maybe less intimidating.
Forum: Fixing WordPress
In reply to: Please Help: Trouble with Thumbnail Pictures!!!!!No worries mate! Glad you got it! Best of luck to you as well!
Forum: Fixing WordPress
In reply to: Please Help: Trouble with Thumbnail Pictures!!!!!^^^^^^^^^^ Screen Options link is below you’re name and the “Logout” link. Hopefully you see a logout link.
Forum: Fixing WordPress
In reply to: Please Help: Trouble with Thumbnail Pictures!!!!!When I referenced the “edit post window”, I literally meant the window that comes up in the admin panel when you go to add or edit a new post. You should see a “Custom Fields” box in there. If you don’t you need to check it off in the “Screen Options” menu in the top right. No template edits should be needed to make this work if the theme was setup correctly.
Forum: Fixing WordPress
In reply to: Please Help: Trouble with Thumbnail Pictures!!!!!Right on keesiemeijer! I meant to add that in and forgot to. Thanks! ??
Forum: Fixing WordPress
In reply to: Please Help: Trouble with Thumbnail Pictures!!!!!Oh ok, have you tried using the custom field they referenced in the edit post window? It often shows up under the editor itself in a section called “Custom Fields” with a drop down for the “Name” and editable area for the “value”.