Thread Starter
YouGlo
(@youglo)
Hi,
I’ve changed the website subfolder, so its now http://youglo.co.uk/wordpressv1/
Could you please look into this as soon as possible?
Thanks
Hi
At our end it is working perfect . It may be you have change the folder that’s why the logo image and other images does not showing.
So again upload images .
Let me know for further assistance .
Thanks
akhilesh
Thread Starter
YouGlo
(@youglo)
Hi,
No it did not get resolved.
It’s still showing up stretched, even though I uploaded the logo up on the website again.
Please help.
Thanks
Thread Starter
YouGlo
(@youglo)
It will be best if I send you a screenshot of the problem.
Can you you tell me how I can do this?
Thread Starter
YouGlo
(@youglo)
Hi,
Can someone please get back to me?
I’m still having the problem.
Please see the logo for the front page: http://youglo.co.uk/
Compared that to when I go to the websites ‘shop’: http://youglo.co.uk/?post_type=product
Why is the logo on the home page small and stretched?
I want it to look like what it is shown on the shop page.
Thanks
Hi
It’s due to conflict ion of the css. At your end the woocommerce plugin css
conflicting with our theme css .
To resolve this
Go to wp -admin << Appearance << Option Panel << General Setting << Custom css field
Copy past the below css code into it
.logo-img {
height:60px;
}
Hope your issue will resolve
Let me know for any confusion .
THanks
Akhilesh
Theme Author
webriti
(@priyanshumittal)
Got the issue
Its a styling conflict with the woocommerce plugin.
The plugin also declares .logo-img class.
Just specify the height as 100 px in the option settings of the logo.
or add
.logo-img {
height:100px !important;
}
in the custom css box of the option panel.
Thanks
Priyanshu
Thread Starter
YouGlo
(@youglo)
That’s fantastic! It’s worked!
One more thing, is there anyway I can manually position the logo to the right? It’s a little too far to the left.
If so, how can I do this?
Thanks
Theme Author
webriti
(@priyanshumittal)
Very Simple just add some left margin to it
.logo-img {
height: 70px !important;
margin-left: 100px;
}