• ofpeb

    (@ofpeb)


    Hello,
    How would one get rid of the following, which is in the bottom right hand corner of the wordpress site?

    ? Substance: WordPress ? Style: Ahren Ahimsa

    It seems part of the template.

    Also, is there any way to get one’s adsense banner in the footer to move up closer to the content area of page?

    Thanks! joe

Viewing 6 replies - 1 through 6 (of 6 total)
  • tomontoast

    (@tomontoast)

    Without a url to your webpage or access to your template files there is absolutely nothing anyone can do! Try opening footer.php and looking for the words

    ? Substance: WordPress ? Style: Ahren Ahimsa

    and deleting them.

    Thread Starter ofpeb

    (@ofpeb)

    Thanks Tom! That did it. How about moving the adsense ad closer to the content? url = https://www.100buckhouseraffle.com
    Thanks again! joe

    tomontoast

    (@tomontoast)

    I’m sorry to have to say this but your theme mark-up is disgusting which makes it hard to acheive the layout that you want. The best I acn sugest is to open footer.php again and look for

    <td id='credits'>
    
    <div style='float: right;'>
    &raquo;&nbsp;
    
    </td> <!-- end of credits -->

    and replace it with

    <td id='credits'>
    <center>
    <script type="text/javascript"><!--
    google_ad_client = "pub-3552797827835148";
    /* 728x90, created 2/26/09 */
    google_ad_slot = "4851480586";
    google_ad_width = 728;
    google_ad_height = 90;
    //-->
    </script>
    <script type="text/javascript"
    src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
    </script>
    </center>
    </td> <!-- end of credits -->

    and delete everything after </html>
    The open up style.css and find

    #main
    {
        margin: 60px 40px 60px 20px;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
    }

    replace with

    #main
    {
        margin: 60px 40px 10px 20px;
        border-radius: 30px;
        -webkit-border-radius: 30px;
        -moz-border-radius: 30px;
    }

    I hope that helps!

    ravisarma

    (@ravisarma)

    Joe,

    I am the author of the theme, so if your question isn’t answered, please contact me (code [at] ahren [dot] org) and I will be glad to help.

    Thread Starter ofpeb

    (@ofpeb)

    Dang Tom!

    How do you know all this stuff? I think it looks a little better. What do you mean when you say my theme markup is disgusting?

    Also if I want to get rid of ‘Site’ and ‘Comments’ in upper right corner of homepage. I imagine that would be a pretty easy fix?

    Thanks again for your help! joe

    ofpeb, to get rid of the “Site” and “Comments” bar, you can do one of two things: edit style.css and add to the bottom:

    #rsslinks
    {
        display: none !important;
    }

    That’s the quick and dirty way. Or you can remove the below section from header.php:

    <div id='rsslinks'>
        <div class='capsule'>
        <a href='<?php bloginfo('comments_rss2_url'); ?>'>
        <img border='0' align='top' alt='Comments RSS'
            src='<?php print bloginfo('template_directory') . "/images/rss-icon.gif"; ?>' />
        <span title='Subscribe to the RSS feed for the comments on this site'>Comments</span>
        </a>
        </div>
        <div class='capsule'>
        <a href='<?php bloginfo("rss2_url"); ?>'>
        <img border='0' align='top' alt='Site RSS'
            src='<?php print bloginfo('template_directory') . "/images/rss-icon.gif"; ?>' />
        <span title='Subscribe to the RSS feed for the posts on this site'>Site</span>
        </a>
        </div>
        <?php if( $options['showloginout'] == 1 ) { ?>
        <div class='capsule'>
        <?php wp_loginout(); ?>
        </div>
        <?php } ?>
    </div>

    Regarding moving the adsense banner up, I do not see one in your page now — perhaps too late, but if you still need help, you can contact me at the email address in my first comment above.

    Finally, regarding the “disgusting” comment from “tomontoast”, I guess he is referring to my HTML/CSS changes to the default theme, or to the default theme markup itself. Trenchant criticism, for sure.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘removing ‘substance’ & ‘style’ text in bottom right corner’ is closed to new replies.