aeroomkar
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Page title sizeHi,
You can make the logo image bigger by adding following code to child theme or custom CSS file.
.navbar-brand { height: 86px; line-height: 75px; }
But this will make the navigation to come down since it does not have the space.
regards
Forum: Fixing WordPress
In reply to: WordPress homepage doesnt show unless logged inGlad you found the solution. But the ‘WP_DEBUG’ does not need to be set to “true” for the home page to work. It meant for developers.
Forum: Themes and Templates
In reply to: [Origin] Why is my image taking its own line?Hi,
Add following code to the child theme or custom CSS file..center, .aligncenter { display: block; margin: 0 auto 0.5em !important; }
It will reduce the margin below the images.
Regards
Forum: Fixing WordPress
In reply to: I can not log into my website adminHi,
Delete those two plugin folders via FTP and try to login. Sometimes corrupt plugin files cause this. After you can install the plugins one by one and check.
regardsForum: Fixing WordPress
In reply to: WordPress homepage doesnt show unless logged inHi,
Please provide link to your website.
regardsForum: Themes and Templates
In reply to: [Zerif Lite] Page title sizeHi,
Provide the url to your site so that i can try to help you.
regardsForum: Themes and Templates
In reply to: [Origin] Unable to remove OpacityHi,
Thank you very much. It is perfectly working now. It removed the opacity from archive thumbnails. I have added the following code to remove opacity from post images as well.
.hentry img, .entry-content img, .widget img{ opacity: 1 !important; }
Once again thank you very much for quick solution.
Regards
Forum: Themes and Templates
In reply to: [Hueman] How to show posts underneath each other on front page?There is no setting for this in theme control panel.
Add following in custom css or child theme.
.post-list .post, .post-list .page { float: left; width: 100%; }
Forum: Themes and Templates
In reply to: [Hueman] Possible to add a google Ad in header?First add the following code in header.php
<div class="ads-header-desktop">My ads here</div>
Replace “My ads here” with your adsense or other ad tag.
Then in custom css add the following styling,
.ads-header-desktop { display: block; float: right; margin-right: 5px; margin-top: -95px; }
You may need to change the top and right margin values to suit your website design.
You will also need to add the following code in custom css to disable the ad from showing in smaller screens.
/* hide or display */ .ads-header-desktop { display: block; } @media only screen and (max-width: 800px) { .ads-header-desktop { display: none; } }
Forum: Themes and Templates
In reply to: [Hueman] Featured image and rss etcHi Nick,
I am using a wordpress plugin called Featured Image in RSS to do job.
Here is the link, https://www.ads-software.com/plugins/featured-images-for-rss-feeds/screenshots/Forum: Themes and Templates
In reply to: [Hueman] AdsThank you Alex,
Forum: Themes and Templates
In reply to: [Hueman] Possible to add a google Ad in header?Here is the result.
https://tinypic.com/r/2h7lx6v/5Forum: Themes and Templates
In reply to: [Hueman] Possible to add a google Ad in header?I have successfully added an ad position in header using author’s reply in other thread. Here is the link for that post.
https://www.ads-software.com/support/topic/ads-11?replies=6#post-4906945
Try it, it is easy. You will have to add some css styling to make it look good