Peninah
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Tesseract theme Need help with Custom CSS (Header & Footer resize)I checked, and there are a lot of css rules written into the html, declaring a min-width of 1250px. That is what’s causing the issue. They need to be set to 100% (or less) for smaller screen sizes.
It would seem that this is a feature of the theme itself, but it looks like some of the content is in widgets, so it could be from the widgets (not the theme).
You can use Chrome’s element inspector, or Firefox’s firebug, to check for all the places that have this min-width declared, and then put in your css ‘mid-width: 100% !important;’ to override it.
If you don’t want to do that, you can check if changing your widgets helps. If not, you may need to switch to a different theme.
Forum: Fixing WordPress
In reply to: How to Add Image With Multiple Images in Gallery?You could search for a plugin that accomplishes that.
Another idea would be to make a custom post type for galleries, where the archive page has thumbnails that link to the post, which has the gallery.
Forum: Fixing WordPress
In reply to: Tesseract theme Need help with Custom CSS (Header & Footer resize)Can you explain what it is you want the header/footer to be doing that they are not?
Forum: Fixing WordPress
In reply to: How to transfer from Pligg to WordPressI don’t know anything about Pligg, so I can’t really advise you there…Good luck! I hope it goes smoothly.
Forum: Fixing WordPress
In reply to: How to transfer from Pligg to WordPressI am not familiar with Pligg CMS, but I’m pretty sure you’ll lose your content if you install WP in the same folder.
Have you done a google search on the topic? You may find tools or detailed tutorials.
Forum: Fixing WordPress
In reply to: Spreadshirt Store Redirecting to websiteI’m a bit confused as to what is going on, and the second link doesn’t work, but it does sound like a mix up with WooCommerce settings.
In your dashboard menu, go to WooCommerce > Settings > Products > Display, and you’ll see a list where you can assign which pages on your site become the WooCommerce shop pages.
Check those and make sure they make sense to you (you can use the pages that WC creates, or, you can make pages the regular WP way and assign them to the shop here), and see if that fixes the issue.
Forum: Fixing WordPress
In reply to: Spreadshirt Store Redirecting to websiteA few more details will help people help you.
Can you provide a link to your website?
What are you using for the store functionality?
Was the site ever working as you wanted it to (is this redirection a new occurrence) or has it been redirecting ever since you set up your store?Forum: Fixing WordPress
In reply to: Sidebar vs widget areaA widget area is simply an area that can contain widgets. It can be anywhere on a theme.
A sidebar is a sidebar on a website (the usual–no different for WP) and usually is widgetized. A dynamic sidebar means a sidebar that is widgetized. People do occasionally use “sidebar” and “widget area” interchangeably, but technically, a widgetized area can be anywhere, and a sidebar is specific.
Forum: Fixing WordPress
In reply to: page title wont unhideSince that’s a theme feature rather than a WordPress standard feature, you might try contacting the theme’s support. They may know what’s going on.
Good luck!Forum: Fixing WordPress
In reply to: How to Change Accordion ColourGood for you!
Forum: Fixing WordPress
In reply to: Blog page shows duplicates & not recentI think some more information may be needed to help you.
Can you provide a link to your site?
What’s wrong with it? What should it look like?
When did it “go wrong,” and had you done anything to your site-did you install any new plugins, or did you switch themes, or edit your theme?Forum: Fixing WordPress
In reply to: How to Change Accordion ColourHi Chris,
I took a quick look, and the css is contained in the colors/color1.css, and is targeted with.accordion-heading .accordion-toggle.active.BUT. You shouldn’t be editing your theme’s stylesheet, because when the theme updates, your edits will be lost.
Instead, changes should be contained in child themes. (Link to tutorial and explanation.) Or, if your theme has a custom css box, you could put it there.
I also noticed you are using a premium theme. In that case, you also should be able to ask questions from your theme’s support, and they will know the ins and outs of your particular theme, and may be able to help you more effectively.
Good luck!
Your pictures didn’t come through, but you wrote your question very thoroughly, so maybe they won’t be necessary.
A button in the header sounds like it’s part of the theme. (I suppose it could be a widgeted area or a plugin, but most likely it is part of the theme.)
You can check by going to the theme’s header.php file and checking if it’s there.
If it is, you will need to create a child theme and make your edits there. (Here’s a tutorial that has an explanation of child themes and directions.)
Once your child theme is ready, you COPY (not move!) the header.php file into your child theme, and you can make adjustments there as desired.
Hope that helps!
If that doesn’t help, try contacting your theme’s support.
Forum: Fixing WordPress
In reply to: custom postsThat can be accomplished with custom fields. You can code those from scratch, but there is a fantastic plugin Advanced Custom Fields that makes it easy. The plugin’s website has very thorough documentation to help you get started.
Forum: Fixing WordPress
In reply to: right sidebar won't float to topYay! That’s a big accomplishment.