zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: twentyten sidebar font size its killing me!The site you linked isn’t even WordPress let alone Twenty Ten theme, at last from what I can tell.
Forum: Themes and Templates
In reply to: Weaver II Admin and limitationsI doubt the free version will have any features removed. New features that are added might be added to the paid plugin rather than the free theme version, but even that’s not always true, depends on the feature. At least that’s how it’s been.
You’re probably better off asking questions about Weaver at the Weaver forums http://weavertheme.com/support/support-forum/
Forum: Themes and Templates
In reply to: twenty eleven alternativeI created a child theme a while ago you might find useful.
It has an option to show full posts or auto excerpts, post thumbnails, font and color changes and a bunch of other stuff. Make sure Twenty Eleven is installed then just install it like any other theme and activate.Forum: Themes and Templates
In reply to: Twenty Eleven Theme, sidebar partially hiddenGlad it worked. You can reduce that space by changing the width of #content. Try 58.4%, it looked pretty good.
#content { margin: 0 34% 0 4.6%; width: 58.4%; }Forum: Themes and Templates
In reply to: Twenty Eleven Theme, sidebar partially hiddenBasically, what I mean in the post is, if you change one value by a certain % you need to change the other values by the same to keep the layout proportioned and allow everything to fit.
You just need to increase the sidebar more, this is why I added the comments int he code.
If you increase the sidebar width, you also have to increase the right margin of #primary. Normally you would also have to decrease the width of the content as well, but since we reduced the left and right margins, there should be enough room for some changes to the sidebar.
#secondary { width: 29.8%; } #primary { margin: 0 -36.4% 0 0; }Using firebug, you need a 29% width to display your Facebook widget. Thats 7% more than it is now, so we add 7% to the width of #secondary.
If you just add that, the sidebar will drop to the bottom because the right margin of #primary isn’t greater than the width of #secondary. So we’ll add 7% to that as well.
It’s a bit confusing at first, but once you understand how the layout works, it’s pretty simple.
If you change the values as posted above, it should display fine. (I hope)
Forum: Themes and Templates
In reply to: mozila doesn`t display slider rightYour screenshot is showing Chrome browser, not mozilla, but I just tried it in Chrome and it looks fine as well. Maybe an addon is conflicting or something? Ask a few friends
Forum: Themes and Templates
In reply to: Twenty Eleven Theme, sidebar partially hiddenSure you changed it? I am still seeing the old style.css
nvm, you have the theme extensions plugin installed and it’s conflicting with some of your css. Turn it off unless you really need it.
Forum: Themes and Templates
In reply to: Twenty Eleven Theme, sidebar partially hiddenFollowing the post I linked, I increased the sidebar by 3%, reduced the left and right margins by 3% (so everything wouldn’t looked so squished together) and decreased the width of the content by 3%.
Here is the code I used, I also added the 40px font for entry title like you said you changed.
/* change post title font size */ .entry-title { font-size: 40px; } /* change sidebar width 3% wider and reduce left and right margins */ #primary { float: left; margin: 0 -29.4% 0 0; /* right margin originally 26.4 */ width: 100%; } #content { margin: 0 34% 0 4.6%; /* left margin originally 7.6 */ width: 55.4%; /* width originally 58.4 */ } #secondary { float: right; margin-right: 4.6%; /* right margin originally 7.6 */ width: 22.8%; /* width originally 18.8 */ }This is all you should have in your child theme, if that’s the only change you made. You may need to play with what I commented (I’m not sure the exact size of your widget) but everything is marked.
Forum: Themes and Templates
In reply to: Looking for a templatehttp://graphpaperpress.com has a few themes that are similar, alot of them are premium, but they do have free ones that are really nice.
Forum: Themes and Templates
In reply to: [Theme Blockbuster] How do I change the hover over text color??Would need a link to your site. Usually it’s a:hover
Forum: Themes and Templates
In reply to: [Scrappy] [Theme: Scrappy] Remove the image of the stripes?Open style.css and find the .stripes class and remove the background call.
Forum: Themes and Templates
In reply to: mozila doesn`t display slider rightI’m on a 32″ using Firefox and it looks great to me http://img856.imageshack.us/img856/4524/snap20120320at160211.png
Need a link to your site before anyone can help.
Forum: Themes and Templates
In reply to: Twenty Eleven Theme, sidebar partially hiddenI’m not seeing the above code in your style.cs, maybe you’ve removed it already.
First thing I noticed is, you added all of Twenty Eleven’s style.css code to your child theme css.
It’s great you created a child theme, but there’s no need to copy the entire CSS code.
Child themes will use the parent theme style and templates unless there’s already code in the child theme to tell it to do something else.
Example. lets say the site title in twenty eleven is green
Twenty Eleven style.css might say
#site-title { color: green; }In your child theme, there’s no point in also having
#site-title { color: green; }
It just tells it to do the same thing, when the whole point of a child theme is to make it look different than the parent theme.If you wanted the site title to be red, then add the new css to your child theme and it will use it.
#site-title { color: red; }
It also makes it difficult to see what changes you’ve actually made to the original code.Where in your style.css are you adding the above code?
Forum: Themes and Templates
In reply to: Twenty Eleven Theme, sidebar partially hiddenYou were on the right track, you didn’t adjust the content, and didn’t adjust the sidebar width enough. YOu shouldn’t need to use the .moz-widget-list-adjust class either. Try using…
#primary { margin-right: -32.2%; } #content { margin: 0 34% 0 4.6%; width: 55.4%; } #secondary { width: 29.3%; }Here’s what it looks like after adding that http://img401.imageshack.us/img401/5291/sidebarfixed.jpg