Tagged: 

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #10889
    eckh20
    Participant

    Hi,

    I’d like to be able to have the search box on the same line as the social media links (i.e., not underneath, but to the right of.). Is there some way of doing this?

    Thanks!

    #10897
    Sakin
    Keymaster

    @eckh20: I will check what I can do. Can you send me your site URL.

    #10898
    eckh20
    Participant

    Of course, sorry – I forgot! http://www.gmhealthriskweek.org/

    #10899
    Sakin
    Keymaster

    @eckh20: Can you try adding the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header-right .widget {
        clear: none;
    }
    #header-right .widget_catcheverest_social_widget {
        padding-left: 10px;
    }
    #10902
    eckh20
    Participant

    Thanks! That seems to have got it on the same line. How would I go about putting the social media links on the left of the search box?

    Also, I’m still having trouble getting rounded corners on the images used for the featured content on the homepage. I’ve got it working for images in post and page content (like here: http://www.gmhealthriskweek.org/featured-events/) but the code (below) you gave me for the featured images on the homepage doesn’t seem to have done the trick.

    .featured-post img {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; /* future proofing */
    -khtml-border-radius: 10px; /* for old Konqueror browsers */
    }

    Thanks so much for your help, it’s very much appreciated!

    #10914
    Sakin
    Keymaster

    @eckh20: For header social and Search. Replace the old css that I gave you with the following.

    #header-right .widget { clear: none; float: left; }
    #header-right .widget_catcheverest_social_widget { padding-right: 10px; }

    For rounded corner for Homepage Featured Content it will be as:

    #featured-post img {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; /* future proofing */
    -khtml-border-radius: 10px; /* for old Konqueror browsers */
    }
    #10921
    eckh20
    Participant

    Brilliant, thanks for all your help!

    #16549
    rbrt_bene
    Member

    Hy Sakin,

    Is there a way to have rounded corners for the header search box in Catch Everest Pro?

    Thanks,
    Robert

    #16563
    Sakin
    Keymaster

    @rbrt_bene: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .header-sidebar #s {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; /* future proofing */
    -khtml-border-radius: 10px; /* for old Konqueror browsers */
    }
    #16566
    rbrt_bene
    Member

    It’s perfect!!! Thank you Sakin.

    Regards,
    Robert

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Putting the search box alongside the social media links’ is closed to new replies.