Triptripper
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Text links not working from mobile devicesI think it’s because of the googleads2 div above the links. I’ve try the
display:none
andmargin-bottom: 80px
and the links works.Forum: Fixing WordPress
In reply to: Can't get child theme to recognized parent styleTry double quotes?
@import url("../twentytwelve/style.css");
Forum: Fixing WordPress
In reply to: Changed permalink for SEO now get 404You’re welcome
Forum: Fixing WordPress
In reply to: My posts are not showing on my blog except onemy posts are not showing up on my ‘blog’ page except one old one
I can see 8 posts on your ‘blog’ page
Forum: Fixing WordPress
In reply to: Adding Content on All Posts Under a Specific TagUse
has_tag
instead ofis_tag
.https://codex.www.ads-software.com/Conditional_Tags#A_Tag_Page
Forum: Fixing WordPress
In reply to: Changed permalink for SEO now get 404Forum: Fixing WordPress
In reply to: Positioning with CSSTry
#rollover-header { width: 33%; float: left; } #feed-header { float: none; margin-left: 96%; margin-top: 50px; /* adjust to whatever you like */ }
Forum: Fixing WordPress
In reply to: Redirect homepage to latest postFollow the link I posted
Forum: Fixing WordPress
In reply to: Redirect homepage to latest postTry this in your own custom page template
<?php $postslist = get_posts('numberposts=1'); foreach ($postslist as $post) : setup_postdata($post); ?> <div class="post"><h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php the_content() ?> </div> <?php endforeach ?>
Forum: Fixing WordPress
In reply to: changed url and can not access loginForum: Fixing WordPress
In reply to: Changing ImageYou mean image slider?
Forum: Fixing WordPress
In reply to: Trouble creating a custom menu for blog pageI then assigned the “contact” page as the “post page” under “Settings>Reading”
Use is_home() instead.
https://codex.www.ads-software.com/Conditional_Tags#The_Main_Page
Also, do all the editing in a Child Theme environment.
Forum: Fixing WordPress
In reply to: Trouble creating a custom menu for blog pageTry
<?php if(is_page('blog')) { ?> <?php wp_nav_menu( array( 'theme_location' => 'blog_navigation' ) ); ?> <?php } else { ?> <?php wp_nav_menu( array( 'theme_location' => 'primary_nav' ) ); ?> <?php } ?>
Forum: Fixing WordPress
In reply to: How to add logo before site titleAdd this into the logo div, just after
<?php else : ?>
and before<h1 id="site-title">
<img class="altlogo" src="https://www.pakchristian.com/wp-content/uploads/2013/04/pak-christian-community-1.jpg" alt="" />
Then add this in your theme’s css
.altlogo { float: left; margin: 5px 10px 10px 0; } header #logo p{ margin-top: 10px; }
Forum: Fixing WordPress
In reply to: Adding a subpage that is not WP but an independently made HTMLTo do what you describe, create a folder in your public_html directory called dreamweavermade and put the dreamweavermade.html in it. Then rename dreamweavermade.html to index.html