Jamie Gill
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] Change height and width images of Category in shop pageSo this is an image linked too a category, so technically not the product image hence why woocommerce resize isnt working. Where is the image been pulled from is it a Category Image?
Forum: Themes and Templates
In reply to: [Virtue] Change height and width images of Category in shop pageHi Joint,
Do you have the URL of the site you are doing so I can look into this?
NOTE – If you have uploaded the images and then changed the size in woocommerce you have to regenerate the thumbnails before the resize will work.
cheers
JForum: Themes and Templates
In reply to: Drop Down Menu dissappearingHi Andrew,
Someone was experiencing the same issue after and applied the following :-
html {
position:relative;
z-index:-1000;
}This makes the menu now work flawlessly. Still trying to figure why this even makes it work. Any ideas?
Thanks again for your time and help on this matter
Forum: Themes and Templates
In reply to: Drop Down Menu dissappearingI have given it a top of 15px so you can see
Forum: Themes and Templates
In reply to: Drop Down Menu dissappearingStill doesnt seem to resolve the issue. I tried it at 0 (so it covered the actual parent link. Then 5px, 10px and so on until 25px (the original top value).
Can’t believe I am struggling with this.
Forum: Themes and Templates
In reply to: Drop Down Menu dissappearingDoesn’t seem to be the issue here. I did add some top to try get it directly under the parent to test if it was the gap between the parent and the sub. I have removed the top and it doesn’t seem to fix it.
Thanks for your time thought, appreciated.
Forum: Fixing WordPress
In reply to: Admin area wont functionHi Esmi,
Yes I repaired the database. However it sprung to mind regards limitations I logged into the clients CP and looked at the size of the db which was exactly 150MB.
Turnsout thats the max limit of there hosting package, so its not letting WordPress write anything to the DB. Thanks for your help on this one matey.
Cheers
JForum: Fixing WordPress
In reply to: Admin area wont functionHi Esmi,
Thank you for your reply yes I have carried out the usual procedures for fixing this kind of issue including the two suggestions above.
Never had it where you cant do anything at all I cant even add a user.
Forum: Themes and Templates
In reply to: RSS FeedSOLVED
It was the WP Property plugin that was causing the issue. In the class_core.php file on line 40 I removed :-
//** Modify request to change feed */
add_filter(‘request’, ‘property_feed’);Cheers
JForum: Themes and Templates
In reply to: [Coraline] Help changing header size on CoralineSorry Andrew missed that bit thanks :).
Follow Andrews instructions on the custom CSS side as if you update the theme in the future these changes will be overwritten.
Regards the image sizing it is forcing it to go a smaller height. The other way to do it would be to change the container size #branding but this would cut abit off the bottom of your image. As follows :
#branding { height: 135px; overflow: hidden; width: 100%; }This may solve the issue for you.
Hope this helps
J
Forum: Themes and Templates
In reply to: [Coraline] Help changing header size on CoralineHi,
Im assuming it’s the main header image you are talking about? If so this is been styled in your main style.css .
As follows on line 426 is where you need to edit the height :
#branding img { border: 0 solid #000000; height: 130px; max-width: 100%; }Just change the height too whatever you desire as you can see its already set too 130px nothing in the header is set to 150px at the moment, which is where the confusion is coming in.
Cheers
JForum: Themes and Templates
In reply to: Change Background ColorHi Improving,
What is the colors you wish to change? As the body color is not going to change the black header or the grey content areas. These are wrapped in there own individual div’s with there own background colors. If you can specify the colors you wish to change and I will have a look into this for you.
Cheers
JForum: Themes and Templates
In reply to: Change Background ColorOK,
I’ve had a look into it and the style you need to change is not the body in the custom style it is picking up
body.custom-background { background-attachment: scroll; background-color: #000000; background-image: url("http://fitimprove.com/wordpress/wp-content/uploads/2012/12/pattern2.gif"); background-position: left top; background-repeat: repeat; }So the body styles you are changing are irrelevant as they are been overridden by the above style. I used Firebug for Firefox to look into it and figure this out. Its not been called from a stylesheet I assume its custom built into the theme maybe it can be changed in the wordpress backend?
Forum: Themes and Templates
In reply to: Change Background ColorHi there,
do you have a link to your website so I can look into this for you?
Cheers
JForum: Themes and Templates
In reply to: [Brunelleschi] Page Body ColorOk its not the body color you want to change it’s the wrapper. So the style is currently :
#wrapper { background: none repeat scroll 0 0 #FFFFFF; margin: 0 auto; max-width: 960px; overflow: hidden; }To change it to black change it to
#wrapper { background: none repeat scroll 0 0 #000; margin: 0 auto; max-width: 960px; overflow: hidden; }