• Ok today i downloaded wordpress, and i downloaded a theme off the website and modified it. I used fire bug to help me with all the modifications but there are 7 things i cant seem to change/fix.

    1 The title of the website and the title of the posts are now small. (they were large befor but somehow they got small and i dont know how to fix it.)
    2 On the callender widget there is an extra row at the bottom and i cant get the white borders to go black.
    3 On the Most visited widget the alignment is off a bit, and there are problems with the border. There is also one white line on the left side i cant remove.
    4 The bottom border is missing around the name of some widgets callender for example.
    5 There is a white line when you look at a post responce
    6 there is no footer. (i want to make my footer in coding, and i want to make it where it cannot be changed.
    7 The theme is currently in a folder with the original name. If i try and rename the folder to the theme name the widgets wont work at all.

    Here is my theme.

    Sorry i didnt know how to upload it here and if i paste code the post wont work for some reason

Viewing 10 replies - 16 through 25 (of 25 total)
  • Alwyn Botha

    (@123milliseconds)

    Ok; pleasure

    Please mark thread as resolved so that

    – others with similar problem can see it as resolved and will read this thread for help if they have similar problem

    – people providing help see it as resolved and will not waste time reading this post.

    2)
    This should make your borders black.
    Replace your classes with the following.(back it up first)

    .widget-calendar th {
    background: url(“images/bg-sidebar-calendar-th.png”) no-repeat scroll 0 top transparent;
    border-bottom: 1px solid #000000;
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
    padding: 4px 0 5px;
    text-align: center;
    }

    .widget-calendar td {
    background: url(“images/bg-sidebar-calendar-td.png”) no-repeat scroll 0 bottom transparent;
    border-bottom: 1px solid #000000;
    border-left: 1px solid #000000;
    padding: 4px 10px 5px;
    }

    .widget-calendar table {
    background: none repeat scroll 0 0 #E0E0E0;
    border-right: 1px solid #000000;
    margin: 0;
    width: 259px;
    }

    If you want to remove the extra row, you have delete the following in the code.
    But there seems to be something missing in the calendar.
    Look at the id’s.

    <tfoot>
    <tr>
    <td class=”pad” id=”prev” colspan=”3″> </td>
    <td class=”pad”> </td>
    <td class=”pad” id=”next” colspan=”3″> </td>
    </tr>
    </tfoot>

    1)
    For the header try adding:

    #header h1#site-title{font-size:***px;}

    For the posts try adding:

    h2.entry-title {font-size:***px;}

    Place these add the bottom of your stylesheet
    Don’t forget to fill in the fontsize

    I think the white line is a divider when there are more than 1 responses
    If you dont want it remove the border-top or set it to 0px.
    I would suggest making it black.

    ol.comment-list {
    border-top: 1px solid #E5E5E5;
    margin: 1px 1px 8px;
    }

    Thread Starter Jknocker

    (@jknocker)

    Ok i will try those.
    Any sugesstions for problem 3?

    Thread Starter Jknocker

    (@jknocker)

    Martin010 (sorry i dont know how to add a quote on this forum)

    What do you mean by something is missing in my calender?

    Thread Starter Jknocker

    (@jknocker)

    There is nothing to do with the calender in he stye.css i looked in tyle.dev.css and found the callender stuff. But when i tried to change it, it did nothing.

    there are 2 td’s, one with id=prev and one with id=next.
    <tfoot>
    <tr>
    <td class=”pad” id=”prev” colspan=”3″> </td>
    <td class=”pad”> </td>
    <td class=”pad” id=”next” colspan=”3″> </td>
    </tr>
    </tfoot>

    This suggests that there should buttons/links to scroll through the months.
    —————————————————
    When I view your style sheet, the classes I mentioned are there.
    It should work.It does with firebug
    https://mytestsite.site88.net/wp-content/themes/news/style.css
    Is this the stylesheet you changed?
    —————————————————
    3)
    If you remove the border in the code below the white line will dissapeare,
    but also will the border on all the other classes and id’s.

    #sidebar-primary .widget-inside, #sidebar-secondary .widget-inside, .widget ul li, .image-stream .widget-inside div, .widget-newsletter .newsletter-wrap, #sidebar-primary .search-form, #sidebar-secondary .search-form, .textwidget, #sidebar-primary .ui-tabs, #sidebar-secondary .ui-tabs {
    background: none repeat scroll 0 0 #0F0F0F;
    border: 1px solid #000000;
    height: 1%;
    }
    So place the following after the above.
    #sidebar-primary .ui-tabs{border:none;}

    Some other things will change also.
    Thre are 4 classes on this div.
    <div class=”ui-tabs ui-widget ui-widget-content ui-corner-all”>

    you can override them separatly like the previous one.

    ————————————————–
    For the footer I’m not quit sure what mean, you have a footer.
    But in the footer.php you can replace all with just HTML.
    I’m not if this has to be bewteen php-tags but it works.
    ——————————————————
    All for now

    Thread Starter Jknocker

    (@jknocker)

    Ill just leave the border on the callender the way it is now. (I am really new at this lol) How would i add in those buttons to cycle the months?.

    And yes that is the code i changed. There is also another style sheet called: style.dev.css

    And yea the footer is there now. I have no idea what changed but when i originally posted this, there was no footer

    Don’t know how to add buttons.
    They should come with the calendar.

Viewing 10 replies - 16 through 25 (of 25 total)
  • The topic ‘Need help with a few small problems’ is closed to new replies.