TheMadWiddler1200
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can I increase the size of my logo??Hi Andrew,
If it’s a CSS issue it means it’s an easy fix right? I don’t know what size I’d like the logo to be in height. I guess any size where people can actually see the logo would be okay. What would you recommend I change in my CSS to change the height and make the logo bigger?
Thanks for your help.
Forum: Fixing WordPress
In reply to: How can I increase the size of my logo??I’ve tried every thing I can think of but still can’t increase the size of the logo. Can anyone help with this please?
Forum: Fixing WordPress
In reply to: How can I increase the size of my logo??Hi WPyogi,
Thanks for replying.
Yes I am using a commercial theme and I have already asked the support team but they take days to answer a question so this is why I’m asking here. I’m hoping someone can help me with this.
Do you have any suggestions on how I can increase the logo size?
Thanks for your help. ??
Forum: Fixing WordPress
In reply to: [NSFW] How can I remove border on my images?Great, this worked. Thank you so much, Andrew! ??
Forum: Themes and Templates
In reply to: [Customizr] Theme update broke my site.Hey d4z,
Thanks for replying!
It wasn’t any CSS or PHP problems, I did some changes in the theme files and when I updated to the latest version of Czr, all my work was deleted. I managed to fix the problem and now my site is back to how it was before the update. ?? But now I know that I can’t update my theme anymore or else all my work will be erased.
Thanks for your help though. ??
Forum: Themes and Templates
In reply to: [Customizr] Add small image to sticky header?Yes that worked perfectly. Thanks d4z! ??
Forum: Plugins
In reply to: [Ad Blocking Detector] Text from 'Ad-blocker detected' not showing up?Hello John Morris
Thank you for replying!
Here is the code that I get when I check on the web console page
"ABD Detector:: Asynchronous jQuery detected. ABD waited 0.075 seconds for jQuery to load." min:1 "ABD Detector:: No iframe removal detected." min:1 "ABD Detector:: No div removal detected" min:1 "ABD Detector:: No js removal detected" min:1
`
I am running the latest version of Firefox – 35.0.1
For ad-blocker I use ‘Ad-Block Plus’ – Latest versionThanks for your help!
Forum: Themes and Templates
In reply to: [Customizr] Right sidebar content goes outside body?Okay nevermind, this is not a theme problem. A plugin I just installed is causing this problem.
Forum: Plugins
In reply to: [Social Share Button] Change the share link.Okay never mind. The link was working properly.
Thanks for this great plug in!
Forum: Themes and Templates
In reply to: [Customizr] Change tagline on sticky header?Thank you very much, d4z!!
Forum: Themes and Templates
In reply to: [Customizr] Change tagline on sticky header?d4z_c0nf, you really are awesome!! Thank you very much for this! Is there a way to make this new link open in a new window? Thank you, d4z! ??
Forum: Themes and Templates
In reply to: [Customizr] Change tagline on sticky header?Hi d4z_c0nf, thanks for replying!
I tried the code you provided but a link doesn’t appear in my sticky header tagline. Could you check my code below and see if I did something wrong. Should I remove these >> [ ] in the link?
/* This code changes the tagline */ add_filter( 'tc_tagline_display' , 'my_link_in_tagline'); function my_link_in_tagline( $html ) { global $wp_current_filter; ?> <?php if ( !in_array( '__navbar' , $wp_current_filter ) ) :?> <div class="container outside"> <h2 class="site-description"> <a href="[https://www.google.com]" title="[Awesome title]">d4z_c0nf is awesome</a> </h2> </div> <?php else: return $html; //when hooked on __navbar; endif; }
Thanks for helping, d4z! ??
Forum: Themes and Templates
In reply to: [Customizr] Custom CSS behaving differently depending on browserAll browsers view your site differently. To make changes to specific browsers you need to use vendor prefixes in your css. Here’s a good read for that.
Forum: Themes and Templates
In reply to: [Customizr] Double title on category pages?Okay I got rid of the “Category Archives: YourCategoryName” title. I used
.archive-header h1{ display: none; }
to remove it and keep the category description.
Now I just need to move the default page title to the top of the page so it’s on top of the category description not on the bottom of it. Can anyone help with this?!? Here’s a link to the page.
Thanks. ??
Forum: Themes and Templates
In reply to: [Customizr] Line divider colour change using htmlhr{ border-color: #27CBCD; /* or this >> #27CBCD -moz-use-text-color #27CBCD */ }
Maybe this?