Still issues with site

Discussion in 'Real Photography WordPress Theme' started by almazz, Feb 21, 2013.

Thread Status:
Not open for further replies.
  1. almazz

    almazz New Member

    Joined:
    Jan 23, 2013
    Messages:
    18
    Likes Received:
    0
    1) HOME PAGE I want to make my pictures (main and thumbnail) wider vertically, they are squished.

    I also want to get rid of the two bottom footers: "posted on.....etc" and "setting up footer, search, page archives, contact us etc) the website is www.luciart.ca
    You provided me with a code before and it didn't work.

    3) On the ABOUT page, Im having trouble with the layout. I want to get the picture to fit in nicely with the text - left justified - but every time I do, I get the "Categories and Archives" sidebar. When I make the page "fullwidth" it looks like the picture is huge...and there is that footer again.

    Thank you so much :s
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    1. For your first issue, paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    #slider ul.slides li img {
    height: 600px;
    }
    #carousel ul.slides li img {
    height: 210px;
    }
    #carousel ul.slides {
    padding-bottom:130px;
    }
    Adjust the value as per your requirement.

    2. For your second issue, paste the following code in your custom css
    Code:
    .content-bar .post .post_meta li {
    display: none;
    }
    .footer {
    display: none;
    }
    3. For your third issue, paste the following code in your custom css
    Code:
    .sidebar {
    display: none;
    }
     
    .page-wrapper .page-bar {
    padding-right: 0px;
    margin-right: -300px;
    }
    .page-wrapper .page-bar img {
    margin-right: 20px ! important;
    }
     
  3. almazz

    almazz New Member

    Joined:
    Jan 23, 2013
    Messages:
    18
    Likes Received:
    0
    Thank you so much for the codes. I still have an issue with the first page: The bottom still shows "Home" and "Posted By" and all that information I don't want.
    Also, how to I change the "submit" button colour?

    A.
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar {
    display: none;
    }
    #contactForm input[type="submit"] {
    background: Your color value;}
    
     
  5. almazz

    almazz New Member

    Joined:
    Jan 23, 2013
    Messages:
    18
    Likes Received:
    0
    Thank you so much!
     
Thread Status:
Not open for further replies.

Share This Page