Taner
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pixova Lite] backgroundAh I see what you mean.
Don’t forget to add no-repeat to the background part.
#about{ background: transparent; } #contact{ background: transparent; } #footer{ background: transparent; }
If it doesn’t work, add !important to the end of the transparent style.
Forum: Themes and Templates
In reply to: [Pixova Lite] backgroundbody { background: url('https://wotwallet24.ru/wp-content/uploads/2016/03/cropped-unspecified-1.jpg') no-repeat center center !important; background-size: cover !important; }
You’re going to need a higher res image, though.
Forum: Themes and Templates
In reply to: [Pixova Lite] backgroundCan you link the page you’re trying to change? I’ll take a look ??
Forum: Themes and Templates
In reply to: [Pixova Lite] backgroundYou’ll find it in the css files, alternatively you can create a child theme https://codex.www.ads-software.com/Child_Themes
If you want to make the background a static image that isn’t pulled straight in from the backend you’d do something like:
html, body{ background: url('/wp-content/uploads/06/03/example.jpg') no-repeat center center; background-size: cover; }
Forum: Themes and Templates
In reply to: [Pixova Lite] backgroundIf you’re looking to just change the colour you can do:
html, body{ background: #000; }
Forum: Themes and Templates
In reply to: [Powen Lite] Images are brokenCan you link the page that’s being problematic? I’ll take a look now ??
Forum: Themes and Templates
In reply to: [Powen Lite] Images are brokenHow are you trying to link the image? Is it just a regular
<img src="https://www.shotsandtales.com/wp-content/uploads/2015/12/Slider20.jpg">
Or are you trying to link it dynamically? The issue appears to be that you’ve got:
https://i2.wp.com/www.shotsandtales.com/wp-content/uploads/2015/12/Slider20.jpg?fit=1200%2C900&resize=200%2C200
i2.wp.com/ in front of your link. The image can’t be found on that server so it’s throwing you a bad request.
Forum: Themes and Templates
In reply to: Open portfolio link on thumbnail clickIf you wrap the image into an anchor link it should work.
<a href="<?php the_permalink(); ?>"> <?php the_post_thumbnail(); ?> </a>
For example. So change the div that it’s wrapped in to an anchor link.
Forum: Themes and Templates
In reply to: [Powen Lite] Images are brokenIf you open up the inspector on most major browsers and open up the console, if on Chrome open up the inspector and hit escape, if it shows any errors, just paste that in a reply in code tags. If it’s throwing a 404 error that means that your image isn’t linked properly, the browser can’t find it.
If you’re trying to link a dynamic image it’s usually
<?php the_post_thumbnail(); ?>
If you’re trying to link a static image make sure that there’s a / in front of the src.
Forum: Themes and Templates
In reply to: [Olsen Light] Change color of link textPop open the CSS file or enqueue your own and stick in:
a { color: #000; }
If you just want to change specific links without effecting all of them at once, add a class to the ones you want to change, for example:
<a href="<?php the_permalink ?>" class="blue-links"> Link Text </a>
And go into your stylesheet and do:
.blue-links { color: blue; } .blue-links:hover { color: black; }