Forum Replies Created

Viewing 15 replies - 421 through 435 (of 507 total)
  • try

    <div style="float:left; width:250px;">
    <?php if (!dynamic_sidebar('Footer Area One')) : ?>
    <aside id="%1$s" class="widget %2$s">
    <h3><?php _e('An optional widget area for your site footer', 'toolbox');?></h3>
    <?php _e('some text '); ?>
    </aside>
    <?php endif; ?>
    
    </div>
    <div style="float:left; width:250px;">
    <?php if (!dynamic_sidebar('Footer Area Two')) : ?>
    <aside id="%1$s" class="widget %2$s">
    <h3><?php _e('An optional widget area for your site footer', 'toolbox');?></h3>
    <?php _e('some text '); ?>
    <?php endif; ?>
    
    </div>
    <div style="float:left; width:250px;">
    <?php if (!dynamic_sidebar('Footer Area Three')) : ?>
    <aside id="%1$s" class="widget %2$s">
    <h3><?php _e('An optional widget area for your site footer', 'toolbox');?></h3>
    <?php _e('some text '); ?>
    <?php endif; ?>

    </div>

    http://ocahostel.com.br/wp-content/themes/ocahostel/images/bg-body.jpg
    no they are using it as a single image

    there are different ways to do it,
    one of them is
    add
    just after your body tag

    <img src="images/bg.jpg" id="bg" alt="">
    
    and in css
    #bg {
    	position:fixed;
    	top:0;
    	left:0;
    	/* Preserve aspet ratio */
    	min-width:100%;
    	min-height:100%;
    }

    its cool as long as the problem is solved 🙂

    Forum: Hacks
    In reply to: Styling adminbar

    on the second look i think u extensively r using buddypress and u might not actually want to remove it, what u can try doing is giving your adminbar class a z-index

    Forum: Hacks
    In reply to: Styling adminbar

    the only difference i can see is just the adminbar background color ?
    and since you are using buddypress what i did with buddypress for my adminbar styling was i totally removed it and replaced it with wp admin bar

    so it could be in ur case as well what happened for me was wp admin bar was overlapping in dashboard area so i used this code

    <?php
    /*
    ** The following removes BP admin bar and replaces it with the WP admin bar
    */
    
    function remove_bp_adminbar(){
         remove_action( 'wp_footer', 'bp_core_admin_bar', 8 );
         remove_action( 'admin_footer', 'bp_core_admin_bar');
         show_admin_bar(true);
    }
    add_action('after_setup_theme','remove_bp_adminbar');
    ?>

    i still cant see why u changed so many classes there were only 7 or 8 of them which would have done the trick.

    These are the only two classes which i needed to change for the background color

    #wpadminbar
    {
    		height:45px;
    		padding-top:5px;
    		background: #D4DCEA;
    		 box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
        -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
        -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    
    }
    #wpadminbar .ab-top-secondary
    {
    			background: #D4DCEA;
    }

    But i have added it in both style and functions file (i have child theme for my buddypress

    were you able to change it ?
    Two options :
    1:

    .entry-content, .entry-summary {
        clear: both;
        font-size: 22px !important;
        padding: 12px 0 0;
    }

    2:

    #content, #content input, #content textarea {
        color: #333333;
        font-size: 13px;
        line-height: 24px;
    }

    What ever works best in ur case

    Is that text a static text ?
    if it is a theme i am assuming it would have its own portfolio theme page instead of default theme page.
    So you might have to go into that page just before the post loops start add your text.

    the better option would be to posting your site link and pointing it exactly to where u would want it to get more accurate help, as right now we r just throwing arrows in air

    What all info are you looking to add from that page ?

    if u can ftp, do you see your theme folder in wp-content/themes/yourthemefolder ?

    Did u do a transfer from 1 domain to another ?
    if yes and you are seeing your old domain name links that means while transferring you didnt properly replace your old domain to your new domain

    could u get to put just a basic static hello world page and try doing http://yoursitedomain.com and see if u can see that page

    Forum: Fixing WordPress
    In reply to: centering website

    i think i already answered your query in another post ? did u created two posts
    as such here is the solution
    .wrapper {
    margin: 0 auto !important;
    padding-left: 0 !important;
    }
    remove padding-left:0 !important from wrapper class

    yes it looks center guys just a few pixel not but remove the padding-left 0 and it is perfect center

    when u do http://example.com
    what does it show ? blank page? error ?

    and i couldnt understand but
    http://example.com/blog (the wordpress works fine right? )

    this is what ever i could reach with playing around with firebug

    you would have to play around with few values to get 100% fix
    backup your stylesheet before doing the changes

    .content-sidebar #content {
        background: none repeat scroll 0 0 #FFFFFF;
        }
    #content {
        margin-bottom: 20px;
    overflow:hidden;
        width: 100%;
    }
    .sidebar-content-sidebar #content-sidebar-wrap, .content-sidebar-sidebar #content-sidebar-wrap, .sidebar-content #content-sidebar-wrap, .content-sidebar #content-sidebar-wrap {
        float: left;
        overflow: hidden;
        width: 550px;
    }
    
    .content-sidebar #sidebar {
        background: none repeat scroll 0 0 #FFFFFF;
        border-radius: 10px 10px 10px 10px;
    
    }
    .sidebar {
        display: inline;
        float: left;
        margin-bottom: 10px;
        margin-left: 30px;
        width: 310px;
    }

    🙂 great cheers

Viewing 15 replies - 421 through 435 (of 507 total)