Editing Theme CSS - 0 Experience

Permalink
I have 0 CSS experience and I am having a problem with a module that is jumbling up the links for Previous and Next. I was told adding this to the theme's css could correct the problem as the theme's css was causing it to jumble.
.contactDirectoryWrap .pagination { width: 100%; }

Having no experience in the matter I pasted the above in the theme's main.css and cleared the site cache but had no luck. I also tried adding that line using the Dashboard > Themes > Customize > Add CSS option. I am sure I am way off and would appreciate any guidance.

 
ob7dev replied on at Permalink Reply
ob7dev
Did you add that to the beginning of the file or the end?
You could try
.contactDirectoryWrap .pagination { width: 100% !important; }

instead to make sure the style isn't being overridden.
kgwg replied on at Permalink Reply
I pasted that at the end and cleared the cache again but still no luck.
kgwg replied on at Permalink Reply
Tried the beginning as well.
ob7dev replied on at Permalink Reply
ob7dev
Whats the URL of the page?
kgwg replied on at Permalink Reply
http://kikogoats.com/index.php/members/membership-beta/

At the bottom of the contact directory.
ob7dev replied on at Permalink Reply
ob7dev
The numbers are being overlayed by the prev/next buttons.

Try pushing the prev/next buttons down via css:

.pagination .pageLeft, .pagination .pageRight {
    top: 16px !important;
}
kgwg replied on at Permalink Reply
Should I put this in the top of my theme's main.css file or try to put it in through the design option on the contact directory block under custom css? I tried pasting it in the top of the main.css but still the same. Thanks for trying to help.
ob7dev replied on at Permalink Reply
ob7dev
Try clearing Concrete's cache. Its different than your browser cache. Its under Dashboard -> System Settings -> Optimization
.../index.php/dashboard/system

If you added the CSS its not being loaded, probably because concrete is loading its own cached version.
ConcreteOwl replied on at Permalink Best Answer Reply
ConcreteOwl