• I am working on a site for a good friend of mine. the address is riverbottomretrievers.net. I removed the menus that were on the right side but now have a blank space and want to expand the area for the txt so it fills the whole screen.

    Also – where it currently says River Bottom Retrievers in txt at the top – I want to change that to his logo – is it possible there? Thanks in advance.

Viewing 15 replies - 1 through 15 (of 16 total)
  • Hi,

    Yes absolutely it is possible, if you want menus in right side again do one thing in style.css file at #nav .left{…} write:

    float: right;
    padding-top:105px;
    height:auto;

    Also, if you want to add logo at the place where River Bottom Retrievers is written, then in header section upload the logo image.

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    Amitrca, working on the logo now – but did your code and there is still a large space over on the right side where the menus were. I purposely removed the menus – now I just want the pages to flow over into that space – is that possible?

    Hi,

    your page width is 780px; so make #nav width also 780px; and padding-left

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    Just changed it in to this:

    #nav {
    width: 780px;
    height: 80px;
    padding: left;

    And still not moving over – it also shows up in the top of the style.css as width 760px

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    The top menus moved over – but the txt for each page is still staying to the left and not enlarging the size…

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    I figured it out – thanks!

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    one more question – I have get all the txt to align correctly but the pictures will either only align left or right – even though they are centered in the editor – any suggestions? when I center them they just go to the left – when I align them right – they go to the right… thoughts?

    Hello my friend,

    Now Just replace your CSS with the following code, and let me know.

    [over 10 lines of CSS code moderated – read the forum guidelines]

    Best of Luck…..

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    That took care of all the centering issues – the only problem I’m having now is getting the pictures centered correctly even though they show it in the editor…

    Hi,

    In your CSS file where you call the image for the post content

    add img tag as

    .post img{
    align:center;
    }

    also give padding left/right as per the setting.

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    updated the code as you said – still aligning left when it is centered…

    your theme seems to be missing some of the basic alignment styles, i.e. particular the .aligncenter

    see:

    https://codex.www.ads-software.com/Wrapping_Text_Around_Images

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    ok – thanks – where should I add that into my style.css?

    Thread Starter hoosiercanuck

    (@hoosiercanuck)

    I added that code and still nothing – it did show it was in there though… any other thoughts?

    You have another CSS section that is floating all images to the left:

    line 52

    img {
        border: medium none;
        float: left;
        margin-right: 10px;
    }

    Firebug will help you identify problems like this.

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Removed right-side menus – need help adjusting the width of the txt’ is closed to new replies.