I’m having a slight issue with the accesspress mag navigation.
If i size my browser to the mobile size(<600px) it changes the view as it should, however, if i click to view the menu, then resize to original desktop the links along the navigation disappear completely.
Has anyone worked out why this is, or how to stop this from happening?
]]>/*
Theme Name: accesspress-mag child theme
Theme URI: https://accesspressthemes.com/wordpress-themes/accesspress-mag/
Description: This is a custom child theme I have created.
Author: AccessPress Theme
Author URI: https://accesspressthemes.com
Template: accesspress-mag
Version: 2.1.9
*/
@import url("../accesspress-mag/style.css");
]]>On my webpage (https://fcbcdk.zz.mu) there is a small letter on the top left corner of the page. I have no idea why it’s there. Can anyone help me?
It’s the little ‘d’-letter in the top left corner.
Thanks in advance,
Omar.
Btw – I LOVE this theme!
On my webpage, I have some pictures in the big slider. However, regarding the pictures to the right: I would like to make them a little bit bigger. Can anyone help me with this, please?
/ Omar
Here’s the link to my webpage: (https://fcbcdk.hol.es)
]]>Is there a way to change the grey sidebar, which contains widgets, to – say – yellow?
If yes, how?
Here’s the link for my page:
https://fcbcdk.hol.es
]]>My website it www.embed-news.com and I have removed the left sidebar on all pages and made the page width larger by using the CSS:
#content {
float: left;
width: 500px;
}
.singlecol #content {
float: none;
width: 940px;
}
But I need to change the width back to the default for just the Home Page. What CSS will do that?
Thanks
]]>I’ve been trying out tons of plugins and solutions to fixing the loop. I hope this is the right place to post in, I think its related to the multisite.
Background about the site:
1 – I run WordPress 3.5.2
2 – Multisite enabled
3 – StyleMag theme
I want the mainsite to work as a portal for all the articles and also the blogs, with that I mean that I want the header and footer to be the exact same all over the website. I want to have it easy administrated so that I dont have to edit a menu or header for all the sites. So that thing I have solved with switch_blog() for the moment, working OK, but not totaly statisfied.
So now Im trying to fetch an ordinary the loop for one of the blogs I’ve created in the network. I have taken the single-default.php page and tried to edit it to fetch all the posts from all categories. But not getting it to work. I think it might have something with the switch_blog() function to do, but Im not sure.
So what I’ve done is i created a copy of single-default.php and renamed it to template-blogindex.php, put in the template name at the top as Blogg Index and then created a new page and given it the template, “Blogg Index”.
I really dont know why it doesnt fetch any posts.
For now the code looks like this:
<?php
/*
Template Name: Blogg Index
*/
?>
<?php global $data; ?>
<?php $categories = get_categories( $args ); ?>
<?php get_header(); ?>
<!-- BEGIN #main-content -->
<div <?php echo sidebar_position('primary-content'); ?>>
<h1 class="page-title">
<?php the_category(', '); ?>
</h1>
<!-- BEGIN .page-content -->
<?php switch_to_blog(2); ?>
<div <?php post_class("page-content"); ?>>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div class="no-image"></div>
<h2 class="article-title">
<?php the_title(); ?>
<span class="article-meta">
<span class="article-date"><?php the_time('F j, Y'); ?></span><span class="article-category"><?php the_category(', '); ?></span><span class="article-comments"><?php comments_popup_link(
__( '0 Comments', 'qns' ),
__( '1 Comment', 'qns' ),
__( '% Comment', 'qns' ),
__( '', 'qns' ),
__( '<span class="comments-off">Off</span>','qns')
); ?></span>
</span>
</h2>
<?php the_content(); ?>
<p class="post-tags"><?php the_tags( __('Tags: ','qns'), ', ', '' ); ?></p>
<?php
wp_link_pages( array(
'before' => '<div class="page-pagination">',
'after' => '</div>',
'link_before' => '<span class="page">',
'link_after' => '</span>'
) );
?>
<?php if( $data['display_sharing_options'] ) { ?>
<div class="article-social-links">
<ul class="clearfix">
<li class="tweet-link"><a target="_blank" href="https://twitter.com/share?text=<?php the_title(); ?>"><?php _e('Tweet this article','qns'); ?></a></li>
<li class="facebook-link"><a target="_blank" href="https://www.facebook.com/sharer.php?u=<?php the_permalink(); ?>/&t=<?php the_title(); ?>"><?php _e('Share on Facebook','qns'); ?></a></li>
<li class="pinterest-link"><a target="_blank" href="https://pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>&media=<?php echo $src[0]; ?>&description=<?php the_title();?>"><?php _e('Pin on Pinterest','qns'); ?></a></li>
</ul>
</div>
<?php } ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php restore_current_blog(); ?>
<!-- END .page-content -->
</div>
<!-- BEGIN #main-content -->
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
]]>