• Forum
  • FAQ
  • Docs
Notice: In order to post a support question you have to have an account and be logged in.
Register  or  Login
  1. Hi Max,

    I´d like yout help with this doubts I have:

    1) About the header. I have the size "207 x 113" but I want to have a bigger header, and if it´s possible, the body of the template alittle bit width too. When I use small logos created with illustrator, doesn´t looks like this one for example http://blogofall.com/wp-content//logo-web-nuevo-800x400.jpg

    2) When I use the search box, the post doesn´t appears like that, you can only see the header and the body, but you can´t get into the post. Here you have an example: http://blogofall.com/?s=Fringe

    3) The comments are not ok. Here you can see the comments ok: http://www.blogofall.com/training/?p=1130 but in my real blog there is no icon for the autors http://blogofall.com/2010/05/iv-certamen-de-relatos-breves-renfe.html

    4) How can I change the tipography of the pages and the widgets title?

    5) Is possible to get more width to te theme? or would it be complicated.

    Regards!!!

    carlosrm
    1 year ago
  2. Hi,
    1) About the header. I have the size "207 x 113" but I want to have a bigger header, and if it´s possible, the body of the template alittle bit width too. When I use small logos created with illustrator, doesn´t looks like this one for example http://blogofall.com/wp-content//logo-web-nuevo-800x400.jpg

    You mean the logo? What is the size that you would like to have?

    2) When I use the search box, the post doesn´t appears like that, you can only see the header and the body, but you can´t get into the post. Here you have an example: http://blogofall.com/?s=Fringe

    There is a continue reading link on the bottom of each post. Anyway, is you would like to have the title clickable then you need to find this code in search.php file:

    <h1><?php the_title(); ?></h1>
    

    and replace with:
    <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    

    3) The comments are not ok. Here you can see the comments ok: http://www.blogofall.com/training/?p=1130 but in my real blog there is no icon for the autors http://blogofall.com/2010/05/iv-certamen-de-relatos-breves-renfe.html

    It may be something from wordpress settings as need to work fine for sure.

    4) How can I change the tipography of the pages and the widgets title?

    Please provide more details about what you would like to change and I would provide the changes that need to be made.

    5) Is possible to get more width to te theme? or would it be complicated.

    This means to rewrite all theme css as all shortcodes, sidebars, all theme elements were calculated with 990px width.

    Cheers,
    Max.

    Max
    1 year ago
  3. Hi Max,
    Thanks for the quick answer. You were right about the comnnets icon, now is woking fine.

    Regarding the questions:

    1) 250x 136 would be nice for try how suits to the blog, but I don´t want the pages tittle to be removed or something like that.

    4) The thing i mean are, in the header, the title of the pages: "Home, Contacto, Info, Publicidad, Links, Suscríbete" and in the Sidebar, the tittle of the widgets: "Post más populares, Comentarios recientes, Síguenes en Facebook...."

    Thanks

    carlosrm
    1 year ago
  4. Hi,
    1) 250x 136 would be nice for try how suits to the blog, but I don´t want the pages tittle to be removed or something like that.

    You can change width and height from this code in style.css file:

    .header .logo {
    position: absolute;
    z-index: 0;
    top: 46px;
    left: 386px;
    width: 207px;
    height: 113px;
    overflow: hidden;
    }
    

    The code need to be changed to:
    .header .logo {
    position: absolute;
    z-index: 0;
    top: 46px;
    left: 365px;
    width: 250px;
    height: 136px;
    overflow: hidden;
    }
    

    4) The thing i mean are, in the header, the title of the pages: "Home, Contacto, Info, Publicidad, Links, Suscríbete" and in the Sidebar, the tittle of the widgets: "Post más populares, Comentarios recientes, Síguenes en Facebook...."

    This is the code for page titles:

    .topmenu .dropdown {
    float: left;
    font-family: 'QueensParkBold', Georgia, "Times New Roman", Times, serif;
    font-size: 14px;
    text-transform: uppercase;
    text-shadow: 1px 2px 1px black;
    line-height: 1.1em;
    color: #999;
    z-index: 1300;
    margin: 0;
    padding: 0;
    }
    .topmenu .dropdown li a:hover, .topmenu .dropdown .current-menu-item a, .topmenu .dropdown .current-menu-item li a:hover, .topmenu .dropdown .current-menu-item .current_page_item a, .topmenu .dropdown .current-menu-ancestor a, .topmenu .dropdown .current-menu-ancestor a:hover, .topmenu .dropdown li li.current-menu-ancestor a, .topmenu .dropdown li .current-menu-ancestor .current-menu-item a {
    color: #FFD300;
    }
    

    And this one is for sidebar:
    .sidebar .widget-container h3 {
    color: #4C4C4C;
    margin: 0 0 10px 0;
    font-size: 14px;
    font-family: 'QueensParkRegular', Georgia, "Times New Roman", Times, serif;
    text-transform: uppercase;
    }
    .sidebar h3 {
    color: #4C4C4C;
    margin: 0 0 15px 0;
    font-size: 14px;
    font-family: 'QueensParkRegular', Georgia, "Times New Roman", Times, serif;
    text-transform: uppercase;
    }
    

    Cheers,
    Max.

    Max
    1 year ago
  5. Hi again Max,

    One question, I want to have the same items that I already have in the index page, in every post.

    ¿How Can I do that? Regarding the first 3 banners, they are included by code, so I´d like to know where do I need to put the code.

    Thanks!

    carlosrm
    11 months ago
  6. Hi,
    I'm not sure what you mean with the same items, please provide more details.

    Thanks.

    Max
    11 months ago
  7. Hi Max,

    I want the advertisement in the post too. Actually, there are only in the home page.

    This is an example of the code that I use to have the videos in the home sidebar, i write this on the template:

    <?php wpads('SidebarAmazon'); ?>

    So I want this appears too in the post.

    Do you understand me now? :)

    Thanks!

    carlosrm
    11 months ago
  8. Hi,

    If you want to insert php code in the sidebar widgets, you can use plugins that allow you to insert php code, like: http://wordpress.org/extend/plugins/wp-php-widget/
    Use the PHP widget to add php content to the sidebar from Appearance -> Widgets, select the sidebar module where you want to add content, insert the PHP Widget and fill it with the php content you need.

    Cheers,
    George

    George
    11 months ago

Add Reply

You must log in to post.

 

Add a new topic!

Chances are your issue is already answered, but if it’s not, you can always create a new topic.

Add new topic

Search forums

Searching for something specific? Type something and press Enter to search.