wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty ElevenWell there are lots of color code you can use this for e.g.
#565AFA
for a lighter blue.No it is changed only for the links inside #site-generator div.
If you want to change for color of the links for the whole site you can declare it for globally like:
a{ color:#565AFA }Forum: Fixing WordPress
In reply to: The problem with thumbnail imagesHi,
the path of the image is wrong.Pls check it again as the image is not being loaded.Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty ElevenHi,
sorry the above options i was talking about are not available for the footer text(kind of skipped my mind), you have to edit your stylesheet like i demonstrated above.Forum: Fixing WordPress
In reply to: Header ImageYour style.css file is located here:
http://173.247.250.112/~bacona6/wp-content/themes/origin/style.min.css
Forum: Fixing WordPress
In reply to: Header ImageHi, in your style.css file you have this:
#branding { float: left; margin-top: 20px; overflow: hidden; width: 25%; }change width to:
#branding { float: left; margin-top: 20px; overflow: hidden; width: 940px; }Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty ElevenChildtheme stylesheet rules will override the default stylesheet or if you find this easy then you can directly do this from the visual editor enable kitchen sink options and then style the text anyway you like after selecting it.
Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty ElevenTo change the color, Go to line 2278 in your style.css file and tthere you will see this:
#site-generator a { color: #555555; font-weight: bold; }change the value of color to whatever you like or simply write the name of the color instead of tthe code like above like
color:blue
and you will be good to go.Forum: Themes and Templates
In reply to: [Celestial - Lite] Upper Lower Case TextNo problem…mate..cheers..:)..
Forum: Themes and Templates
In reply to: [Celestial - Lite] Upper Lower Case TextOk.
In your style.css located at:
http://www.careersupport365.com/wp-content/themes/celestial-lite/style.cssOn line 526 you will see a css class on
aelement like this:a { color: #467FC2; font-weight: 600; letter-spacing: normal; text-decoration: none; text-transform: uppercase; }the last line you see above is the cause for uppercasing your text.comment it like below and you will be good to go
a { color: #467FC2; font-weight: 600; letter-spacing: normal; text-decoration: none; /*text-transform: uppercase;*/ }Forum: Themes and Templates
In reply to: [Celestial - Lite] Upper Lower Case Textplease post the link to your site then i will be able to demonstrate to you.
Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty Eleveni just tested on your site you can use the below code:
<div id="site-generator"> <strong>Reacties, tips en/of opmerkingen? </strong> <a href="">Mail</a> <a href="">Facebook</a> </div>Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty ElevenForum: Themes and Templates
In reply to: [Celestial - Lite] Upper Lower Case Textif it turns to uppercase automatically then there might be a css class set to
text-transform:uppercasein your style.css.
Disable it and you will be able to do that.Forum: Themes and Templates
In reply to: [discover] Increasing Header Image SizeHi, sorry i didn’t see the link which you already had pasted above.
You need to increase the width, you need to do this,In your foundation.css stylesheet on th line 269 there is a class as below:
.three, .row .three { width: 25%; }this is why you are not able to increase the size because the parent container is set to 25% width.now to override for only the header portion you need to attach the id
#header_container
before the class,then you would be able to change the width without changing rest of the elements on your site where the above class is being used.So you will do this,#header_container .three, .row .three { width: 25%; }and increase the width to whatever you like.
Thanks.
Forum: Themes and Templates
In reply to: [Twenty Twelve] Won't allow me to add an img in header.php fileGreat to know…..so see you around..