alrmoras
Forum Replies Created
-
Just tested it, mod_rewrite works.
Oh okay, could the error then be caused by them?
Hello, sorry about bumping. Anyway, I believe that the server is correctly configured at least, it is on my end. My .htaccess file is the same as stated, wordpress has permissions to write to it, would the fact that my host is 000webhost make any difference?
Forum: Themes and Templates
In reply to: [Expound] Header image disappear on sub pageHi, looking at your sites code, to load up the header image on the main page you are going to yoursite.com/wp-content/fakepath/logo.png however, the way that you’ve set it up is when you go to a new page, it then tries to load yoursite.com/mypage/wp-content/fakepath/logo.png and ofcourse, the logo isn’t there.
<img src="wp-content/themes/expound/images/header/logo.jpg">To fix it you will need to go to your directory where your theme is installed goto the ‘inc’ folder then edit custom-header.php
Goto around line 64 and make sure that the bit that says
<a class="expound-custom-header" href="<?php echo esc_url(
says
<a class="expound-custom-header" href="<?php echo esc_url( home_url( '/' ) ); ?>"If it still doesn’t work, make sure that your home URL is set correctly at the Settings page.
PS: I wouldnt add your logo in the header image, rather I would add
.site-title a { background: url('http://YourSite.com/Path-To-Image.png') 0 0 no-repeat; width: WidthOfImagepx; height: HeightOfImagepx; text-indent: -9999px; }Replace YourSite.com/ect… with your logo
Replace WidthOfImage and HeightOfImage with the correct numbersThis should be added to your expound.css file located in Theme Directory -> CSS
Hope I helped 🙂
Alex
Forum: Themes and Templates
In reply to: [Magazino] Featured images get aligned weirdlyHey, just tried above method but the styles layout has changed. Could you please explain what I would have to do now.
Thanks!