Triptripper
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change order of postingsForum: Fixing WordPress
In reply to: How To Make Category Image Also A LinkForum: Fixing WordPress
In reply to: How to indent text but not others?Try this in Text tab
"President:" <span style="margin-left:100px;">"You see Obama"</span>
Forum: Fixing WordPress
In reply to: How can I add a blog setup on a specific page in my WordPress site?You’re welcome! ??
Forum: Fixing WordPress
In reply to: How can I add a blog setup on a specific page in my WordPress site?Forum: Fixing WordPress
In reply to: Upload photos (Weird!)Try clearing the browser cache and cookies.
Forum: Fixing WordPress
In reply to: Shortcodes not workingEg. ‘[youtube=https://www.youtube.com/watch?v=JaNH56Vpg-A]’
The shortcodes are supposed to work out of the box: https://en.support.wordpress.com/shortcodes/
Perhaps the shortcode format is only for WordPress.com not www.ads-software.com?
Forum: Fixing WordPress
In reply to: How to add "noindex" to a link…Forum: Fixing WordPress
In reply to: How to make header wider?Try this in your custom or child theme’s css
.container .six.columns { width: 640px; } .container .ten.columns { width: 280px; }
Forum: Fixing WordPress
In reply to: Drop Down Menu Disappears upon hoveringTry this first…
.navigation ul { line-height:23px; }
Forum: Fixing WordPress
In reply to: Drop Down Menu Disappears upon hoveringTry this in your custom or child theme’s css
.navigation li ul a{ line-height:23px; }
Forum: Fixing WordPress
In reply to: Text links not working from mobile devicesI’m not really good when it comes to responsive structures, maybe you can adjust margin-bottom of the div or just remove it when screen resizes? try something like:
@media (max-width: 450px) { .googleads2 { /* your declaration here */ } }
Not sure though if that’s the solution. Maybe someone else have better idea.
Forum: Fixing WordPress
In reply to: [NSFW] Removing tags from post listTry in archive.php
Then wrap it with is_category() conditional tag, something like
<?php if (!is_category()) {?> <span class="topTags"><?php the_tags('<em>:</em>', ', ', ''); ?></span> <?php } ?>
Forum: Fixing WordPress
In reply to: Urgent help: Adding link to another domainGo to WP dashboard -> Appearance > Menus. Then in Custom Links box add your sub-tab.
Forum: Fixing WordPress
In reply to: Can't get child theme to recognized parent styleIs there any type of setting that needs to be turned on so that BOTH are activated at the same time?
You just need to set the child theme as the active theme in your admin area (Appearance > themes).
What do you see when you click the preview button of your child theme when not activated?
I know I did the child folder right because I was able to move the header to above the menu.
Which header? and what menu?
is the location of your child theme’s style.css:
/wp-content/themes/the-folder-name-you-used/style.css