tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Change Link Color in Posts ONLYYou could use your WYSIWYG editor to achieve this. (font color option)
Forum: Themes and Templates
In reply to: [Customizr] Your Site linkInteresting that I can see my post in this thread only if Im logged in.
Is this a forum bug or someone removed it / unpublish it?Forum: Themes and Templates
In reply to: [Customizr] Your Site linkI think you should post your site on customizr showcase
http://www.themesandco.com/customizr/showcase/Forum: Themes and Templates
In reply to: [Customizr] Change the font size of links in a postif you dont want to remove
<code></code>tags then you need to change font size for them to 18pxcode, pre {
padding: 0 3px 2px;
font-family: Monaco,Menlo,Consolas,”Courier New”,monospace;
font-size: 12px; /* you need to change this to 18px
color: #333;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}Forum: Themes and Templates
In reply to: [Customizr] Change the font size of links in a postRemove
<code></code>tags around your links and they will have normal font size.Forum: Themes and Templates
In reply to: [Customizr] Change the font size of links in a postOnly I can see is that dropdown menu font size is not right. I would add
.dropdown-menu > li > a { font-size:16px; }to make them same size as menu items.
Forum: Themes and Templates
In reply to: [Customizr] Changing space in menu items and content box sizeFor reducing space between menu items you need to change at least left padding, so you can try adding next css code in child theme css or custom.css and see does that fit your needs.
.navbar .nav > li > a { padding: 5px 3px 5px 15px; font-size: 16px;If not, try again by changing values for right (3px) and left (15px) padding. For the rest check bottom of the post at http://wordpress.org/support/topic/reducing-the-height-of-the-slider-and-white-spaces-1?replies=4
Forum: Themes and Templates
In reply to: [Customizr] Boxes arround menu topicsSure, just activate css classes in screen option at yoursite.com/wp-admin/nav-menus.php page and fill it with some button css classes, for example:
menubutton btn btn-mini btn-successYou will need to add few lines in you custom.css or child theme css file. For above css classes just add:
.nav>li.menubutton.btn a { color: #FFF; text-shadow: 0 -1px 0 rgba(0,0,0,0.31); padding: 0 5px; }You`ll maybe need to correct padding for your menu item. Thats it. Regarding any color, its also possible, but with some more css editing. For starters you have few color options provided by Bootstrap itself, take a look at http://getbootstrap.com/2.3.2/base-css.html#buttons
or active “Link target” at http://www.ltbc.ch/wp-admin/nav-menus.php screen options. Then you will be able to enable/disable “Open link in a new window/tab” option for each menu item.
just add target tag, like
<a href="https://www.facebook.com/LausanneTchoukballClub" target="_blank">LausanneTchoukballClub</a>Forum: Themes and Templates
In reply to: [Customizr] reduce font size on recent posts sidebar widgetstry to add
h3 .widget-title { font-size: 12px; }in custom.css or in custom css field and see if this helps
This will change all h3 widget titles.I would add some table classes for each table you wish to look diferent. You can use existing ones (from Twitters Bootsrap, check http://getbootstrap.com/2.3.2/base-css.html#tables ) or you can make you own classes. For that you need to add in your custom.css something like this:
table .class1 tr,tdortable.class1 tr,tddepending what elements in table you wish to change. For example:table .class1 td, th { border:1px solid blue; } th { background-color:blue; color:white; }and then you need to add class to your table code in the post/page
<table class="class1" width="600" cellspacing="0px" cellpadding="0px">and so on with class2 for table2,….