batharoy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Destro] Wifi Sign?That icon is actually for rss feeds. If you look on the right side of this page you can see a real small one.
Sorry, this is probably what you want:
.entry-content a[target=_blank] { background-image: none; }I think the first one I posted hides the link. Sorry about that.
Try this:
.entry-content a[target=_blank] { display: none; }Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageAdd some padding-top to the #short_code_si_icon so it would look like this:
#short_code_si_icon { float: right; padding-top: 30px; }Then adjust the number to what you want.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageNow add this to your css:
.site-title { float: left; } #short_code_si_icon { float: right; }Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageOk now put the php snippet back into the header.php, i believe it waas in the
<hgroup>tag.<?php DISPLAY_ACURAX_ICONS(22,48,0,'bounce',0.9); ?>But only the snippet, nothing else.
Forum: Themes and Templates
In reply to: [Pilcrow] Pilcrow Causing Site To Be Slow?Any custom edits you have made will be erased if the theme is ever updated.
I would recommend using one or the other. If its just css changes you can activate the custom css module in jetpack.
If however there are php custom edits, you will need to create a child-theme.Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageOK, after looking at the source on your site it appears the php snippet already assigns an id to social widget. There is no reason for you to add one.
It also looks like you added the
<a id="social-media-icons"info twice,
the first has only<style>info and the second is empty. Your only allowed one id per page.
So let’s start by removing both of those completely.
After that we will style it the way you want.Forum: Themes and Templates
In reply to: [Pilcrow] Pilcrow Causing Site To Be Slow?because I’ve tried to customize my theme.
If that were true almost every WP site would be slow.
I turned off my ad-block and browsed around on every page and different posts. The only thing I found wrong is the 1st youtube vid on homepage. The user deleted their account and it’s no longer there.
I did however notice it looks like you don’t use a child-theme or a css plugin, is that correct?
Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageThe php snippet takes care of the href= , you would want the id in that spot. Also if using more than 1 word in the id use hyphens or it will add as a separate id for each word.
<a id="social-media-icons"><?php DISPLAY_ACURAX_ICONS(22,48,0,'bounce',0.9); ?></a>Forum: Themes and Templates
In reply to: [Pilcrow] Pilcrow Causing Site To Be Slow?Your host would almost never admit that it’s something on their end. 😉
That being said, I just visited your site in 4 different browser and all of them completed rendering of the home page within 3-6 seconds.
Is there a particular page that’s going slow?Forum: Themes and Templates
In reply to: [Twenty Twelve] Adding More Than One Logo/Header ImageThe unique ID wasn’t put in the code above, sorry. It would be structured like this:
<a id="header-logo" href="LINK TO EXTERNAL SITE"><img src="LINK TO IMAGE" /></a>
The id can be anything you want but it’s best to use something that describes the element.
In this case it’s usually someone wanting a logo along with the site title text title in the header.You can then use the id in your css:
#header-logo{ align: left; }etc…
Forum: Themes and Templates
In reply to: Round theme, is it possibeIt can be done, feel free to try it.
http://css-tricks.com/set-text-on-a-circle/Forum: Your WordPress
In reply to: Please review my siteYour site is very nice indeed, wish I could of seen the zebra background. 😉
I noticed your menu text is pushed to the left side of the nav contaner.
This bit of code will give a little space there..main-navigation li { margin: 0 20px; }I noticed a mixture of rem & px in your css so use what your comfortable with. By having margin on both the left and right it pushes away from the nav containers edge.
Forum: Themes and Templates
In reply to: Removing extra spacing#et-box-author { margin-bottom: 0; } #comment-wrap { padding: 0; }