usuallyresourceful
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Widget HTML – I am on the right track. But need some insight.I did try getting more into CSS. I tried to add some properties to the br tag for it to do its normal functions.
br{
white-space: nowrap;
padding:0px;
}Forum: Themes and Templates
In reply to: Widget HTML – I am on the right track. But need some insight.Here is the root of the problem. This widget uses unclosed
tags. So without messing with the code at all I would need to get wordpress to accept unclosed
tags. Currently I have not been able to find a solution on Google for that.Forum: Themes and Templates
In reply to: Widget HTML – I am on the right track. But need some insight.Chip,
I purchased this plugin for $97. It’s called wishlistmember. It is a really nice plugin, and I do have support service. But I see multiple people asking about how to fix this in the forum and their have been no answers. So I figured I’d venture off on here to see if this was an easy fix that I was unable to find. The code is obviously there and I could just create my own widget. But that is the easy way out.Forum: Themes and Templates
In reply to: Widget HTML – I am on the right track. But need some insight.Opps, here are the pastebin’s
First moderated line: https://pastebin.com/p3SpeamR
Second moderated line: https://pastebin.com/b0encukF
Forum: Fixing WordPress
In reply to: Going crazy trying to remove a widget from a page.That last option, duplicating a template and customizing it, sounds like the best option for me right now. The link you provided is the exact page I was looking for.
Thanks for the help
For future Google’rs, my particular Woo Theme puts these template files in wp-content/themes/name-of-your-theme
All of the page templates are preceeded by ‘template-‘
example. template-archives.php
Forum: Fixing WordPress
In reply to: Full Page WidthI even screwed the code up a third time! Wow, here ya go.
‘.content {
border: 0 none;
float: left;
margin: 0;
overflow: hidden;
padding: 0;
position: relative;
width: 601px;`Forum: Fixing WordPress
In reply to: Full Page WidthOh crap! I forget. Your width will read 601px! The 995px is what I changed it to on my end. Code will look like this
.contentLayout .content { border: 0 none; float: left; margin: 0; overflow: hidden; padding: 0; position: relative; width: 601px;
Forum: Fixing WordPress
In reply to: Full Page WidthNope, you have to keep going until you find the one that looks like this. Do you have ftp access to your site to download the sytlesheet? If you do I can edit it quick for you and send it back if push comes to shove.
.content { border: 0 none; float: left; margin: 0; overflow: hidden; padding: 0; position: relative; width: 995px;
Forum: Fixing WordPress
In reply to: getting rid of header and menuWuts the link to your website?
Forum: Fixing WordPress
In reply to: Full Page WidthHi friend,
If you use Firefox and and extension called Firebug its really easy to find the value that you need to change. I successfully was able to widen the content using it. It looks pretty even at 995px. Firebug says that you need to edit line 1562 in style.css.It will look like this.
.contentLayout .content { border: 0 none; float: left; margin: 0; overflow: hidden; padding: 0; position: relative; width: 995px;
Its location is https://gunter2.virtuallyassistingu.com/wp-content/themes/spiritual_awakening_pee109/sytle.css
The style to be edited is .contentLayout .content and change the width property.
I believe that this will change the content width for ALL your pages though. But I only see that you have one page, so that probably is not a big deal. Let us know how it goes.