anne29
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Content Resize in CSSIn order to resize the content box I used the following code but the text doesn’t stretch out, not sure how to do that,
/* One column */
.one-column #page {
max-width: 1000px;
min-width: 1000px;}
.one-column #content {
margin: 0 24%;
width: auto%;}
Any ideas?
Forum: Themes and Templates
In reply to: Advice on Sub MenusThanks for that, do you have an example of what that would look like? I couldn’t find one on that page.
Thanks
Forum: Fixing WordPress
In reply to: Top-Aligning Text With ImageHello, thanks for your reply.
What do I put instead of img.wp-image-268? I added that to the stylesheet but it didn’t do anything, I suspect I have to link it to that image specifically or what?
Thanks
Forum: Fixing WordPress
In reply to: Top-Aligning Text With ImageOk. So if I don’t use the table there, how else can I format it?
Forum: Fixing WordPress
In reply to: Top-Aligning Text With ImageWow you’re a genius, that made the image go up, but now the “Recent Posts” looks a bit lower, is there something I can modify for that as well?
Thanks for the tips, I’ll be sure to lookup making a child theme once I’m done this this.
Forum: Plugins
In reply to: [Widgets on Pages] Unwanted space at the topFor anyone else wondering how to format the widgets, you have to edit your style.css and add this to the bottom:
#sidebar-name .widget {
float: left;
width: 80%;
}Where sidebar-name is the name you gave your widget on the widgets on pages options page.