+ Reply to Thread
Results 1 to 6 of 6

Thread: how to edit html on site

  1. #1
    Guru
    Join Date
    Jul 2019
    Location
    Australia
    Posts
    657

    how to edit html on site

    hello,

    where do i edit the html on the headings?

    if i go to all tpl files,controllers ect there is no html headings to edit, just if statements and php code.

    if i go to google inspect i can edit what i want but cannot find the same code in ftp?


    i want to add this code to my box headings:

    <span style="color: red; font-weight: bolder;">Boats</span>

    any help

  2. #2
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    any help yes just add that to your css.

    If you send me a link to your site I will show you where / how
    Last edited by Pete Young; November 22, 2020 at 05:45 AM.
    Getting Started or Starting Over with Your Classified Site? then Get Ready Set Fly V 4.7.1 > quietSecrets.net

  3. #3
    Guru
    Join Date
    Jul 2019
    Location
    Australia
    Posts
    657
    pete,

    i need to change it like this for it to work:
    from this:

    <section class="content_block listings_box">
    <h3>Featured Boats</h3> <div>
    <!-- listings boxes -->

    to this:

    <section class="content_block listings_box">
    <h3>Featured <span style="color: red; font-weight: bolder;">Boats</span> </h3> <div>
    <!-- listings boxes -->

    wich will give me "Featured Boats"


    boatfind.com

  4. #4
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    Kiowa, go to > style.css 1213

    section.content_block > h3, section.side_block > h3 {
    font-size: 1.500em;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
    and change
    font weight from 400 to bolder and add color; red; to the bottom so it looks like below


    section.content_block > h3, section.side_block > h3 {
    font-size: 1.500em;
    font-weight: bolder;
    display: inline-block;
    vertical-align: top;
    color: red;
    }


    The only thing I cant do is keep the word featured black but it does match in with the rest of the titles on the page? If you wanted a black featured and a red Boats I would select to not show the title of that box and create a HTML box and add the text to that HTML and from there you could colour individual words if required.

    Pete

    PS Site is starting to look real nice, well done.

    Attached Images Attached Images
    Last edited by Pete Young; November 22, 2020 at 10:02 AM.
    Getting Started or Starting Over with Your Classified Site? then Get Ready Set Fly V 4.7.1 > quietSecrets.net

  5. #5
    Guru
    Join Date
    Jul 2019
    Location
    Australia
    Posts
    657
    Hello pete,
    I got it, been staring me in the face all the time.
    You just paste the "span" tag with css in the title field in admin. And there you go.

  6. #6
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    Ok sounds good, glad all has worked out.
    Getting Started or Starting Over with Your Classified Site? then Get Ready Set Fly V 4.7.1 > quietSecrets.net

+ Reply to Thread