• Forum
  • FAQ
  • Docs
Notice: In order to post a support question you have to have an account and be logged in.
Register  or  Login
  1. I have gotten almost everything looking like I want it to but there are a few more things.

    In the first image, I checked my CSS and relinked the arrow to it's new location, but the old version keeps showing up.

    In the second image, I relinked the background image to its new location in CSS, but it isn't showing a background at all.

    In the third image, I have been wanting to take off the span class off of all the header titles, but I don't know where the source code is. Can you point me in the right direction?

    Thanks for all your help. You have all been wonderful.

    Attachments

    1. Picture_3.png (7.5 KB, 160 downloads) 11 months old
    2. Picture_2.png (23.7 KB, 164 downloads) 11 months old
    3. Picture_1.png (27.7 KB, 166 downloads) 11 months old
    catsandio
    11 months ago
  2. Hi,

    In the first image, I checked my CSS and relinked the arrow to it's new location, but the old version keeps showing up.
    Find this code in the testimonial_widget.php (library/tfuse_mods/widgets) file:

    '<a href="#" class="prev"><img src="'.get_template_directory_uri().'/images/arrow_green_left.png" width="9" height="11" alt="Arrow Prev"></a><span class="link-more">' . __('VIEW MORE TESTIMONIALS', 'tfuse') . '</span><a href="#" class="next"><img src="'.get_template_directory_uri().'/images/arrow_green_right.png" width="9" height="11" alt="Arrow Next"></a>';
    

    and from here you can change the arrows images source by replacing the: images/arrow_green_right.png to the source to the new image.

    Find this code in the style.css file:

    .header .inner {
    background: url ('http://www.upward-media.com/wp-content/uploads/slider_highlight.png') top center no-repeat;
    min-height: 180px;
    }
    

    and replace with its code:
    .header .inner {
    background: url('http://www.upward-media.com/wp-content/uploads/slider_highlight.png') top center no-repeat;
    min-height: 180px;
    }
    

    But it seems that the image with this source doesn't exist, please refresh the image source too.

    In the third image, I have been wanting to take off the span class off of all the header titles, but I don't know where the source code is. Can you point me in the right direction?

    Sorry, but the page title doesn't contain any span classes.

    Cheers,
    George

    George
    11 months ago
  3. I still don't know what I'm doing wrong. I can't get any of the dropdowns to show a background. This is what I have.


    .topmenu .dropdown li ul li {
    display:block;
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_bg.png') 0 0 repeat-y;
    padding:0;
    width: 173px;
    margin:0;
    height:auto;
    clear:both;
    position:relative;
    line-height:1.3em}

    .topmenu .dropdown li ul li ul li {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_bg.png') 0 0 repeat-y;}

    .topmenu .dropdown li ul li.first {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_first.png') 0 top no-repeat;
    padding-top:10px}

    .topmenu .dropdown li ul li ul li.first {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_first2.png') 0 top no-repeat;
    padding-top:4px}

    .topmenu .dropdown li ul li.last {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_last.png') 0 bottom no-repeat;
    padding:0 0 6px 0;}

    .topmenu .dropdown li ul li ul li.last {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_last2.png') 0 bottom no-repeat;}

    .topmenu .dropdown li ul li a,
    .topmenu .dropdown li ul li.last ul li a {
    display:block;
    color:#B09177;
    height: auto;
    padding:10px 15px 10px 16px;
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_line.png') center bottom no-repeat;}

    .topmenu .dropdown li ul li ul li a {
    background: #F6EEDC;
    opacity: 50%;
    padding:10px 15px 10px 23px;}

    .topmenu .dropdown li ul li.last a,
    .topmenu .dropdown li ul li ul li.last a {
    background:none}

    .topmenu .dropdown li a span {
    display:block;}

    .topmenu .dropdown li a:hover span {
    cursor:pointer}

    .topmenu .dropdown li ul li.parent span {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_arrow.png') 130px 4px no-repeat;
    padding-right:10px}

    .topmenu .dropdown li ul li.parent a:hover span {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_arrow.png') 131px 4px no-repeat;}

    .topmenu .dropdown li ul li.parent ul li span,
    .topmenu .dropdown li ul li.parent ul a:hover span {
    background:none;

    catsandio
    10 months ago
  4. This is what I am referring to. The title_header class. Where would I go to remove it?

    Attachments

    1. Picture_6.png (19.3 KB, 113 downloads) 10 months old
    catsandio
    10 months ago
  5. Hi,

    Remove the space between url and ( in the background lines, like this:
    Current code:

    .topmenu .dropdown li ul li.parent a:hover span {
    background: url ('http://www.upward-media.com/wp-content/uploads/dropdown_1_arrow.png') 131px 4px no-repeat;}
    

    Correct code:
    .topmenu .dropdown li ul li.parent a:hover span {
    background: url('http://www.upward-media.com/wp-content/uploads/dropdown_1_arrow.png') 131px 4px no-repeat;}
    

    Do this for all codes where you'll find this problem.

    About the title-header class. Dot you want to remove it from the style.css or from the html declaration?

    Cheers,
    George

    George
    10 months ago
  6. I feel so dumb. That was an easy fix. Thanks. I want to move it from the HTML.

    catsandio
    10 months ago

Add Reply

You must log in to post.

 

Add a new topic!

Chances are your issue is already answered, but if it’s not, you can always create a new topic.

Add new topic

Search forums

Searching for something specific? Type something and press Enter to search.