pete_voce
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Addons for SiteOrigin] Ultimate Addons bundle Doesn't WorkLooks like I spoke too soon. Everything acts like it works properly but I can’t actually activate new widgets or deactivate widgets that were previously in use. I’ll click the Activate or Deactivate button and it looks like it works while I stay on the Mange Widgets section and go between tabs. However they don’t actually stick. So if I refresh the page, they are back to their previous value. Or if I go to a page, any I activated don’t show up as available. Any ideas @munirkamal?
Forum: Plugins
In reply to: [Ultimate Addons for SiteOrigin] Ultimate Addons bundle Doesn't WorkJust wanted to mention I ran into a similar issue that was solved by updating versions. I was able to activate the Ultimate Addons (v 2.3) plugin but kept getting a permissions error when trying to Manage Widgets on the SiteOrigin Widgets Bundle (v 1.4.4). So ultimately I couldn’t add any of the new widgets from the Addons. Everything worked properly after updating the SiteOrigin Widgets Bundle to version 1.5.4.
Thanks munirkamal
Forum: Themes and Templates
In reply to: How to align featured image to the right with Type Face themeFor that specific example above, the image still has the alignleft class on it. If I use Chrome Inspector to change the class to alignright, it snaps over to the right. If you’re choosing align right in the admin and it’s still getting the alignleft class when the post saves, CSS isn’t your problem.
Forum: Themes and Templates
In reply to: showing a shortened version of a post on home page…Have you tried using the More tag where you want the post to break? There is an icon for it in the Visual editor or you can use <!–more–> in the HTML editor.
Forum: Themes and Templates
In reply to: delete sidebar in picolightAm I correct in thinking that you want the main column to take up the entire width?
First you would want to remove any get_sidebar() function calls so no extra markup is being generated and to make room for your content. Then in your stylesheet you would want to change the #content styles (I think around line #964. Remove the max-width: 67% declaration and add a margin-right: 2% declaration. The margin-right just makes it match the left side spacing.
Forum: Themes and Templates
In reply to: How to align featured image to the right with Type Face themeWhen you upload an image in the WordPress backend, there are a number of options you have before you click the Insert Into Post button. Look for the Alignment section. Judging by your code, it looks like Left is most likely selected by default. When that is selected, a class of ‘alignleft’ is added to the image. This class floats the image to the left. You want to check the box for Right, which will add a class of ‘alignright’ to the image and float it to the right.
Forum: Fixing WordPress
In reply to: css to change h3 titles on only one page?@dianadolce do you have a URL I can look at?
Forum: Fixing WordPress
In reply to: css to change h3 titles on only one page?You should be able to use the page id like so:
.page-id-454 .entry-container h3 {color: blue;}Basically whatever style you modified recently to make them all white, copy and past that line beneath it, then put .page-id-454 in front of it and change the color declaration. So if the style you changed before was this:
.whatever h3 {color: white;}
would become:
.page-id-454 .whatever h3 {color: blue;}
Forum: Fixing WordPress
In reply to: css to change h3 titles on only one page?What pkwooster was suggesting is to look in Firebug for the <body> tag before all of the code you’re pasting in here. In most modern WordPress themes, a number of classes get generated and put in the body tag. Here’s an example of what I’m talking about…
https://dl.dropbox.com/u/9317490/Screen%20Shot%202012-01-09%20at%2011.26.56%20AM.png
Without hacking the plugin, it doesn’t look like you can have the Extra fields above the default fields so you would have to use absolute positioning like you mention above. However if you do want to hack the plugin to do this it isn’t hard. Just keep in mind if you upgrade the plugin your changes will be overwritten!
1) Navigate through to the si-contact-form plugin and open si-contact-form-display.php. Find where the Extra fields code starts, for me it was line 311.
2) Cut those 10 lines out.
3) Paste before the default forms get printed. For me this was line 163, you’ll see a comment about checking for user’s email address.Forum: Fixing WordPress
In reply to: Theme not loading CSS/JSThe site looks good to me, are you still having the issue?
Forum: Themes and Templates
In reply to: span tags for navigation and it's cssAny chance you have your example online where we could see it? I’ve got an idea but want to see if it would work in your current setup.
Forum: Hacks
In reply to: using CSS for lowercase title attributes?Which thematic theme is it? Most likely you will need to find where it is being generated and make it lowercase via PHP.
Forum: Themes and Templates
In reply to: Change to navmenu and body of postsI see what you’re saying. For that to work you’d really want to change the HTML structure rather than trying to hack it together and make it look that way with CSS only. You’d want to move the nav element out of the header element and into or as a sibling of the content div.
Then from there you’d have to clean up styles and adjust widths of the nav element and content element and float them to keep them inline. Then you’d have to make sure you clear the float beneath. You’d also have to adjust the styling on the nav list-items to clear onto their own lines, add a bottom border, etc.
Unfortunately I don’t have much more time to spend in the forums today, but hopefully this can get you started.
Forum: Themes and Templates
In reply to: Change to navmenu and body of postsAre you going for something like this:
https://dl.dropbox.com/u/9317490/Screen%20shot%202011-12-13%20at%204.20.50%20PM.png