juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Post Images Distorted/Skewed/StretchedOk, lets take a look at the image of the girl stretching above the post titled ‘Simple Ways To Dominate Your Fat Loss’.
I viewed the source of the page and found the link to the image. I open the image in another browser window and downloaded it to my desktop where I can examine the image size.
So that image is 200 (w) x 133 (h) but the space the image is going into has a min-height set to 225. So you are telling the software to put a rectangular image in a square frame and you have to stretch the height from 133 to 225 px.
Anytime you try to put a rectangular image in a square container it isn’t going to look good.
You need to get images that are square and larger than 225px in size. (reduction in the size of an image will look clearer than enarging a small image.)
Forum: Fixing WordPress
In reply to: Post Images Distorted/Skewed/StretchedWhat is the url to the page you show in your image?
The image is too small to be helpful and if this is a CSS issue, and image won’t help. I’dd like to look at the site using a code examiner
Forum: Fixing WordPress
In reply to: Posting CSS code in page give 404 errorYour code is all messed up try this
<h2>Rice</h2> <p>The CSS box model is essentially a box that wraps around every HTML element. It consists of: borders, padding, margins, and the actual content.</p> <div><p><a href="http://singcompare.x10.mx/rice/golden-pineapple/">Golden Pineapple</a></p></div> <div><p><a href="http://singcompare.x10.mx/rice/golden-pineapple/">Golden Pineapple</a></p></div>You can deal with the css by using a plugin link ‘my custom css’ to add your css for this
How can I contact you privately? (Like email)
you can’t – forum members are not suppose to private contact users.My guess is that you do not have an active user when the if is processed. if you change the if to
if( is_user_logged_in(get_current_user_id()) && user_is_vendor() ) {
it may work for you.since you check in the user_is_vedor() function to see if the user is logged in, why do you have it in:
if( is_user_logged_in() && user_is_vendor() ) {
and if you take it out of that code, does everything work?Forum: Fixing WordPress
In reply to: Visit Site Goes To Site Without Header Barwhat theme are you using?
What is the URL?
What happens if you disable ALL plugins?What theme are you using?
So if you swap to twenty-sixteen does it go away?did you disable your plugins? did that help?
I think it’s about a function that related to is_user_logged_in().
what makes you think that? where did you pick this piece of code from?
Forum: Fixing WordPress
In reply to: Posting CSS code in page give 404 errorYes, but when I publish it I will get 404 page not found.
1) when you publish it where?
2) is this happening in the backend when you hit update?
3) why do you have two(2) <body>…</body> sections?Forum: Fixing WordPress
In reply to: Post Images Distorted/Skewed/Stretchedagain I see no issue in the blog – you need to provide details a url pointing directly to a post with th eimage would be useful
Well, I’d provide more information and do a bunch of tests like disabling ALL my plugins and swapping to twenty-sixteen to see if it goes away. If the problem went away I’d know it was an issue with the theme and/or one of the plugins so I’d then add them back in one at a time to find the culprit.
Forum: Fixing WordPress
In reply to: Posting CSS code in page give 404 errorUmmm, what does this have to do with WordPress? Are you creating a page in wordpress and inserting all that in the text of the page?
You need a better explaination of your issue.
Forum: Fixing WordPress
In reply to: Post Images Distorted/Skewed/StretchedThe images on the home page look fine to me.
Forum: Fixing WordPress
In reply to: Reduce header height in Pixel-Linear themeBe aware – if you use @oberoibunty suggestion, the next time the theme is updated you will loose the change
Forum: Fixing WordPress
In reply to: Reduce header height in Pixel-Linear themeso you want to remove some of the white space above and below the black and white Bodine Stone & Tile
You will need to eithor create a child theme so you can change the css or use a css plugin like ‘My Custom CSS’ to add
.navbar-inverse { border: medium none; padding-bottom: 19px; padding-top: 40px; }and then you can play with the top and bottom padding to meet your needs