• Hi,

    Phaon3d.com

    Im trying to reposition the links to other pages (about, contact) further along the footer.

    For example I want home on the fair left, about in the middle, and Contactus on the right.

    How would I go about doing this? I cant seem to find the css or php file where this is located.

    Thanks for your help in advance

    Mitch

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

    You can get css file in wp-content-> themes-> open that theme’s folder which you are using.Here you will find style.css file

    or

    Open Dashboard->Appearance->Editor->here you will get stylesheet .

    Thread Starter phaon3d

    (@phaon3d)

    Hi,

    thanks for your reply. Really appreciate it.

    I have found the style.css. But no where can I find the code that would edit the position of those specific links.

    “Post and page navigation” – Any changes that make under this title dont seem to do anything.

    Regards

    Thread Starter phaon3d

    (@phaon3d)

    Ok, I have managed to find the correct section.

    Menus
    ————————————————————–*/
    .main-navigation {
    display: block;
    float: left;
    }
    .main-navigation ul {
    list-style: none;
    margin: 70;
    padding-left: 20;
    float: right;
    }
    .main-navigation li {
    float: left;
    position: left;
    padding: 30px 30px;
    text-transform: uppercase;
    font-family: ‘Roboto Condensed’, sans-serif;
    }
    .main-navigation a {
    display: block;
    text-decoration: none;
    color: #fff;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    }
    .main-navigation a:hover {
    color: #ff6b53;
    }
    .main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: centre;
    top: 100%;
    left: -999em;
    z-index: 99999;
    background-color: #fff;
    }
    .main-navigation ul ul ul {
    left: -999em;
    top: 0;
    }
    .main-navigation ul ul a {
    width: 200px;
    color: #aaa;

    Now when I try to move the text position, it goes so far then decides to list the pages underneath. As if there is a text box that doesnt match the same size as the grey header.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘moving page links on frontpage’ is closed to new replies.