awwabtahir
Forum Replies Created
-
Hi Pietzke,
You just need to add this custom css. I would recommend that you do this installing the “Simple Custom CSS” plugin.
Here is the link to plugin: Simple Custom CSS
div.entry { width: 100% !important; }
Forum: Themes and Templates
In reply to: [i-excel] Slider on Static Home pageHi Jimmy,
Can you share the website in which you are trying to turn on the slider?
Hi Shakk,
This was happened to me also. The problem was a security plugin. I have to delete that and also I have to reset all the files it made changes to like .htacccess file.
Try removing any plugin which made redirects. Simply removing files from plugin folder or through WordPress not actually remove it. You have to remove its data from database and the files it made edit to. Best way is to read a nice article online on how to uninstall X plugin properly.
Try clearing your cache or use different browser & see if the problem is there.
Hopefully, this will help you out. If any query let me know.
Cheers,
awwabtahirForum: Themes and Templates
In reply to: [Serene] Can Comments be RemovedHi Kurts,
Can you share the website from where you are trying to remove the ‘Submit a Comment’ link/button?
Cheers,
Awwab TahirForum: Themes and Templates
In reply to: [Hueman] remove /hide authorname and date from postsHi Adriaan,
Can you share the website in which you are trying to remove the authorname and date?
Cheers,
Awwab TahirHi Pietzke,
Can you share the website where you have changed the template to “full width” but the content is not full width? It will be very helpful as inserting some custom CSS will solve the issue.
Cheers,
Awwab TahirForum: Fixing WordPress
In reply to: [Master Slider - Responsive Touch Slider] WatermarkSmart way is to include images with watermark already in it.
#google_ads_frame2 { background-color: white !important; }
add this custom css. It will remove that.
Forum: Themes and Templates
In reply to: [Iconic One] How to increase the widthAdd this custom css
.site { max-width: 100% !important; }
Forum: Themes and Templates
In reply to: Remove white space and move menu in 2016 themeAdd this custom css
.site-header { padding: 1.25em 4.5455% !important; }
Above code will reduce the white space. To make header image appear first, you have to edit the template file or make a child theme & replace the code in it.
Forum: Themes and Templates
In reply to: Remove "Read More" of Specific CategoriesYou can use the get_the_category() function provided by WordPress. This function accepts the post id as a parameter. For example,
$category = get_the_category( $post_id ); if( $category->name == "news" || $category->name == "events" { <a class="more-link-custom" href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><span><i><?php _e('READ MORE (+)','anew'); ?></i></span></a> }
Forum: Themes and Templates
In reply to: responsive Logo(Header)Add this media query to your image. Give image the ID of “logo”. Then,
@media only screen and (max-width: 425px) { #logo { width: 100%; } }
Forum: Themes and Templates
In reply to: [GeneratePress] Changing In Stock TextYou have sent an empty reply…
Forum: Themes and Templates
In reply to: [Zerif Lite] Blog page and adding linkWell, when I was reviewing the page. I don’t found that any link is attached to “get in touch”. Are you sure that you have included link in the editor?
Forum: Themes and Templates
In reply to: [GeneratePress] Changing In Stock TextActually, I need to see the website where “in stock” text is used.