dandanwoo
Forum Replies Created
-
did it drop to fast so nobody answer?
Forum: Fixing WordPress
In reply to: Mystique drop down menu doesn't workwao, really? nobody? or it dropped to fast?
Forum: Themes and Templates
In reply to: How to align my header widget to the right?Hi alchymyth, thanks for your help these days, now the problem solved!
the code #header .block-content { float: right; margin-top: -80px; } under /*** BLOCKS (usually widgets) ***/ works better.
Appreciate it!!
Forum: Plugins
In reply to: [Nino Social Connect] Cannot show in my Mystique themeappreciate for resolving it!
Forum: Plugins
In reply to: [Nino Social Connect] Cannot show in my Mystique themeHI NINO,
Thanks a lot! It does look nicer and more concentrated!!
Love your icons!!
Forum: Plugins
In reply to: [Nino Social Connect] Cannot show in my Mystique themeHi, thank you for your reply. I’ve been looking for tutors online, and seems one solution suited the theme and your plugin, (really wasn’t easy for me).
And now I’m trying to make the space between the icons smaller, so they looking tighter together. I’m not sure which file I should change. I changed one plugin file, and it messed up all the site, so I didn’t try again.
Forum: Themes and Templates
In reply to: How to align my header widget to the right?I copied you code into style.css under /*** BLOCKS (usually widgets) ***/
And it works. But I didn’t fix the error, don’t know if it will cost problem later…
Forum: Themes and Templates
In reply to: How to align my header widget to the right?I found that code in function.php
function mystique_widgets_init(){
// one sidebar, even though the theme supports 3 columns (because there’s no interface to switch the layout)
register_sidebar(array(
‘name’ => __(‘Primary Sidebar’, ‘mystique’),
‘id’ => ‘sidebar-1’,
‘before_widget’ => ‘<li class=”block”><div class=”block-content block-%2$s clear-block” id=”instance-%1$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<div class=”title”><h3>’,
‘after_title’ => ‘</h3><div class=”bl”></div><div class=”br”></div></div>’
));register_sidebar(array(
‘name’ => __(‘Head Area’, ‘mystique’),
‘id’ => ‘sidebar-2’,
‘before_widget’ => ‘<li class=”block”><div class=”block-content block-%2$s clear-block” id=”instance-%1$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<div class=”title”><h3>’,
‘after_title’ => ‘</h3><div class=”bl”></div><div class=”br”></div></div>’
));}
But how to fix it?
Forum: Themes and Templates
In reply to: How to align my header widget to the right?The errors in the link you showed me, I don’t know how to fix any of them…. :((
I’m original a graphic designer, only know very limited knowledge of web code thing. Please help.Forum: Themes and Templates
In reply to: How to align my header widget to the right?the plugin files also include
admin-page.php
display-functions.php
ninosocial_widget.php
social-form.php
nino-social-style.css
style.cssForum: Themes and Templates
In reply to: How to align my header widget to the right?Hi alchymyth, thanks for your quick replies.
you meant the header.php or the plugin files?
the header code is here:
“
<?php /* Mystique/digitalnature */ ?>
<!DOCTYPE html>
<html <?php language_attributes(‘html’); ?>><head profile=”https://gmpg.org/xfn/11″>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” /><title><?php bloginfo(‘name’); ?> <?php wp_title(‘|’, true); ?></title>
<link rel=”stylesheet” type=”text/css” media=”all” href=”<?php bloginfo(‘stylesheet_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” /><?php if(is_singular() && get_option(‘thread_comments’)) wp_enqueue_script(‘comment-reply’); ?>
<?php wp_head(); ?>
</head>
<body <?php body_class(‘col-2-right fixed’); ?>><?php
wp_nav_menu(array(
‘container_class’ => ‘nav nav-top’,
‘menu_class’ => ‘menu page-content clear-block’,
‘theme_location’ => ‘top’,
‘fallback_cb’ => ”,
));
?><!– page –>
<div id=”page”><div id=”page-ext”>
<!– header –>
<div id=”header”>
<div class=”page-content”>
<div id=”site-title” class=”clear-block”>
<?php mystique_logo(); ?>
<?php if(get_bloginfo(‘description’)): ?><div class=”headline”><?php bloginfo(‘description’); ?></div><?php endif; ?>
</div><?php if ( !function_exists(‘dynamic_sidebar’) || !dynamic_sidebar(‘sidebar-2’) ) : ?>
<?php endif; ?></div>
<div class=”shadow-left page-content”>
<div class=”shadow-right nav nav-main”>
<?php
wp_nav_menu(array(
‘menu_class’ => ‘menu fadeThis clear-block’,
‘theme_location’ => ‘primary’,
‘fallback_cb’ => ‘mystique_page_menu’, // default menu
‘link_after’ => ‘<span class=”p”></span>’, // pointer arrow on 1st level
));
?>
</div>
</div></div>
<!– /header –><!– main –>
<div id=”main” class=”page-content”>
<div id=”main-ext” class=”clear-block”>”social media plugin i’m using is Nino Social, it has a bunch of Plugin Files
nino-social-connect/nino-social.php
nino-social-connect/includes/social-form.php
nino-social-connect/includes/admin-page.php
nino-social-connect/includes/ninosocial_widget.php
nino-social-connect/includes/display-functions.php
nino-social-connect/readme.txtForum: Plugins
In reply to: [Nino Social Connect] Cannot show in my Mystique themeOK, sorry, I had asked a stupid question, now it shows in the sidebar widgets.
Now my question is how to move them to header, and still keep all the style changes in plugin?
Thank you!
Forum: Plugins
In reply to: [Nino Social Connect] Cannot show in my Mystique themeThe site I need help is https://www.icaruscrossfit.com
Forum: Themes and Templates
In reply to: Make Site Title & Tagline into 2 linesHi wmaster, I understood what you said, and thanks! it works on tagline, I just left the title empty and made the title text part of the logo pic.
THANKS!!!!