Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #289881

    Hi there! Ever since I changed themes over to enfold, all my tables have been getting cut off just a tiny bit on the left side. You can see that here: http://thedogbreedsbible.com/the-best-wireless-dog-fence-guide/

    Can you please help me fix this? Thanks so much!

    #290133

    Hi nlassen!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    table {
    width: 98%!important;
    }

    Cheers!
    Yigit

    #290227

    That worked on some of my tables. However, it is making some of them larger. http://thedogbreedsbible.com/small-dog-breeds/ as you can see here, I originally had this table about half the width as it is showing up. Is there any way to not override this?

    Also, the tables under each dog breed are not working when i added that code. http://thedogbreedsbible.com/dachschund-smooth/ they are still cut off a bit.

    Thanks!

    #290230

    Hey!

    Please remove the code i posted earlier and add following code to Quick CSS

    table#t130 { width: 98%!important; }
    table#t4 { width: 98%!important; margin: 0 auto; }

    Best regards,
    Yigit

    #290580

    That fixes everything except each table under each dog breed profile as seen here http://thedogbreedsbible.com/beagle/.

    What can I do to fix the rest of the tables?

    Thanks so much for your help.

    #290584

    Hey!

    If tables under each dog breed have the same ID, you can use following code

    table#t1 {
    width: 98%!important;
    margin: 0 auto!important;
    margin-bottom: 15px!important;
    }

    If not, you need to add custom CSS code for each table with their ID’s included as following

    table#t1, table#t212, table#21231 {
    width: 98%!important;
    margin: 0 auto!important;
    margin-bottom: 15px!important;
    }

    You can right click on the table to find their ID’s as shown in screenshot here – http://i.imgur.com/eUxvYUy.png

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.